由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 问个C++的题目
相关主题
C++ online Test 一题新Qualcomm面经
C++ Question再帖一遍Amazon Onsite的题
请问这个C++问题对吗?Bloomberg网上测试题
C++ Q47: protected constructor (C39)问几个跟C++有关的面试题
如何用new定义class数组(constructor带参数)?包子呼唤大牛--问关于C++Destructor的问题 (转载)
Qualcomm Phone Interbview面筋,赚RPC++ constructor problem
贴一道take home的面试题问个C++重新编译的问题
今早Bloomberg电话面试经过,奉献给大家。。。一道 C++ 的题。
相关话题的讨论汇总
话题: class话题: int话题: parray话题: c++话题: shown
进入JobHunting版参与讨论
1 (共1页)
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
4
ft
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];

1 (共1页)
进入JobHunting版参与讨论
相关主题
一道 C++ 的题。如何用new定义class数组(constructor带参数)?
C++面试问题,高人请进啊~~~Qualcomm Phone Interbview面筋,赚RP
请教1个工作面试题贴一道take home的面试题
为什么C++的constructor出错可以抛出异常,而destructor出错今早Bloomberg电话面试经过,奉献给大家。。。
C++ online Test 一题新Qualcomm面经
C++ Question再帖一遍Amazon Onsite的题
请问这个C++问题对吗?Bloomberg网上测试题
C++ Q47: protected constructor (C39)问几个跟C++有关的面试题
相关话题的讨论汇总
话题: class话题: int话题: parray话题: c++话题: shown