/*下面的程序似乎神秘地进入了递归,即使看不到任何东西。编译器:g++ (Ubuntu 4.4.3-4ubuntu5.1) 4.4.3 机器:x86 操作系统:Ubuntu 10.04 64-bit
*/
#include<iostream>
using namespace std;
class Test
{
public:
Test ():x(9)
{
cout << " Test::Test\n";
Test (x);
}
Test (int a)
{
cout << " Test::para\n";
}
private:
int x;
};
int main(void)
{
Test a;
return 0;
}
为什么是这样?