[C++] Crash when calling a non-static method in a static method

After several searches, here is the call that solved my problem

void AClass::Method01(AClass class, FString string01, FString string02) {
	class->Method02(string01);
}