visual studio c++常见错误

1. 利用类中无参数构造函数定义变量:

	HelloWorld p();//错误,编译将不通过  
	HelloWorld p;  //正确


你可能感兴趣的:(C/C++)