- 论坛徽章:
- 0
|
本来我认为当对一个使用new分配的变量进行delete后,该变量就应当立即失效了.但使用以下的代码作测试,结果却不是我所预期的.
- #include <iostream>;
- using namespace std;
- class Cat
- {
- public:
- Cat()
- {
- cout << "\n Cat Constructs\n";
- }
- ~Cat()
- {
- cout << "\n Cat Destructs\n";
- }
- void sleep()
- {
- cout << "\nI'm sleeping\n";
- }
- void speek()
- {
- cout << "\nMEOW!\n";
- }
- void eat()
- {
- cout << "\nWhere is the mouse!\n";
- }
- };
-
- int main()
- {
- Cat* cat = new Cat();
- if (NULL == cat)
- return -1;
- delete cat;
- cat->;eat(); //Works;
- return (0);
- }
复制代码
输出:
Cat Constructs
Cat Destructs
Where is the mouse!
有兄弟能帮我解释一下吗? |
|