以下结果非常有趣,我很难理解它们。基本上我有一个具有int的类:
class TestClass{
public:
int test;
TestClass() { test = 0; };
TestClass(int _test) { test = _test; };
~TestClass() { /*do nothing*/ };
};
一个接受 TestClass 指针的测试函数
void testFunction1(TestClass *ref){
delete ref;
TestClass *locTest = new TestClass();
ref = locTest;
ref->test = 2;
cout << "test in testFunction1: " << ref->test << endl;
}
这就是我在主要做的事情:
int main(int argc, _TCHAR* argv[])
{
TestClass *testObj = new TestClass(1);
cout << "test before: " << testObj->test << endl;
testFunction1(testObj);
cout << "test after: " << testObj->test << endl;
return 0;
}
我期望输出是:
test before: 1
test in testFunction1: 2
test after: 1
但我得到以下输出:
test before: 1
test in testFunction1: 2
test after: 2
有人可以解释一下吗。有趣的是,将 testFunction1 更改为:
void testFunction1(TestClass *ref){
//delete ref;
TestClass *locTest = new TestClass();
ref = locTest;
ref->test = 2;
cout << "test in testFunction1: " << ref->test << endl;
}
即在将 ref 指向新位置之前我不删除它,我得到以下输出:
test before: 1
test in testFunction1: 2
test after: 1
如果有人能向我解释这种奇怪的行为,我将不胜感激。谢谢。