NativeInt ni = 100; //Wrong. Will issue an Error NativeInt ni = NativeInt(100); //Correct System::GetMemory(0x100); // Error System::GetMemory(NativeInt(0x100)); //Correct
时间: 2024-09-28 16:10:26
NativeInt ni = 100; //Wrong. Will issue an Error NativeInt ni = NativeInt(100); //Correct System::GetMemory(0x100); // Error System::GetMemory(NativeInt(0x100)); //Correct