M*******8 发帖数: 85 | 1 Is there an error with the sample code shown below? why?
class CLASS
{
public:
CLASS(int x=0);
CLASS(double);
};
int x=10;
CLASS * Parray = new CLASS[x]; |
b****j 发帖数: 78 | 2 编译没有问题。
【在 M*******8 的大作中提到】 : Is there an error with the sample code shown below? why? : class CLASS : { : public: : CLASS(int x=0); : CLASS(double); : : }; : int x=10; : CLASS * Parray = new CLASS[x];
|
l*y 发帖数: 21010 | 3 CLASS(int x=0)不就相当于default constructor了么 |
l*y 发帖数: 21010 | |
H*M 发帖数: 1268 | 5 看错了
【在 l*y 的大作中提到】 : ft
|
c***g 发帖数: 472 | 6 看错了
【在 l*y 的大作中提到】 : CLASS(int x=0)不就相当于default constructor了么
|
S*********N 发帖数: 6151 | 7
这个,要句法非常熟或者很多的经验。
CLASS[x]和constructor 不匹配吧?
我最近看C#, C++句法都忘了。
【在 M*******8 的大作中提到】 : Is there an error with the sample code shown below? why? : class CLASS : { : public: : CLASS(int x=0); : CLASS(double); : : }; : int x=10; : CLASS * Parray = new CLASS[x];
|