![]() |
#2
PcrazyC2007-09-06 23:52
|
struct test
{
test(){}
test(int){}
viod fun(){}
};
viod main(viod)
{
test a(1);
a.fun();
test b();
b.fun(); //error
}
书看的少,请大家帮我详细解答一下吧,谢谢!