我想了解下面的代碼。如何在C++中不使用變量賦值的方法?
#include <vcl.h>
#pragma hdrstop
#include "Unit1.h"
#pragma package(smart_init)
#pragma resource "*.dfm"
TForm1 *Form1;
class A
{
public :
void Test();
};
void A::Test()
{
ShowMessage("Hello");
}
__fastcall TForm1::TForm1(TComponent* Owner)
: TForm(Owner)
{
A *x;
x->Test();
}
我期待EAccessViolation錯誤,當我調用Test方法時。
如何在沒有x分配的情況下工作?
這是未定義的行爲,任何事情都可能發生,包括您看到的行爲。 –