prefect world
1、下面程序的正确输出结果为()
[cpp] view plain copy- class test
- {
- public:
- void print()
- {
- cout<<"test"<<endl;
- }
- };
- int main(void)
- {
- test *t = new test();
- t->print();
- t = NULL;
- t->print();
- return 0;
- }
A、编译不通过 B、运行时必然出错退出 C、运行时可能出错退出
D、test E、test test F、test 随机信息
转载于:.html
prefect world
1、下面程序的正确输出结果为()
[cpp] view plain copy- class test
- {
- public:
- void print()
- {
- cout<<"test"<<endl;
- }
- };
- int main(void)
- {
- test *t = new test();
- t->print();
- t = NULL;
- t->print();
- return 0;
- }
A、编译不通过 B、运行时必然出错退出 C、运行时可能出错退出
D、test E、test test F、test 随机信息
转载于:.html
发布评论