由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 问一道c++题
相关主题
solve an optimization model with integral as constraints (转载)贴一道take home的面试题
请问这个C++问题对吗?今早Bloomberg电话面试经过,奉献给大家。。。
C++ Q47: protected constructor (C39)ebay 第一轮电话面试by hiring manager
C++ 一小题新Qualcomm面经
如何做减法和乘法呢?如果不能直接用*, -再帖一遍Amazon Onsite的题
两整数相除问题大家谈谈看???
[FLGT]说说最近当面试官的感想前几天去一投资机构面试,大骂其一通,爽!
Qualcomm Phone Interbview面筋,赚RPa c++ interview question
相关话题的讨论汇总
话题: alpha话题: beta话题: make话题: filldata话题: int
进入JobHunting版参与讨论
1 (共1页)
a****l
发帖数: 245
1
class Alpha {
public:
char data[10000];
Alpha();
~Alpha();
};
class Beta {
public:
Beta() { n = 0; }
void FillData(Alpha a);
private:
int n;
};
How do you make the above sample code more efficient?
a. Make the constructor for Alpha virtual
b. Make the destructor for Alpha virtual
c. Change the return in FillData to int to negate the implicit return
conversion from "int" to "void"
d. pass a const reference to Alpha in FillData
e. If possible, make the constructor for Beta
k********n
发帖数: 1819
2
of course, pass by value cannot change the Alpha instance either. it should
be used to fill Beta members
a****l
发帖数: 245
3
这么想就对了,谢谢!
P**********0
发帖数: 412
4
觉得应该选d.

【在 a****l 的大作中提到】
: 这么想就对了,谢谢!
1 (共1页)
进入JobHunting版参与讨论
相关主题
a c++ interview question如何做减法和乘法呢?如果不能直接用*, -
Bloomberg网上测试题两整数相除问题
问几个跟C++有关的面试题[FLGT]说说最近当面试官的感想
包子呼唤大牛--问关于C++Destructor的问题 (转载)Qualcomm Phone Interbview面筋,赚RP
solve an optimization model with integral as constraints (转载)贴一道take home的面试题
请问这个C++问题对吗?今早Bloomberg电话面试经过,奉献给大家。。。
C++ Q47: protected constructor (C39)ebay 第一轮电话面试by hiring manager
C++ 一小题新Qualcomm面经
相关话题的讨论汇总
话题: alpha话题: beta话题: make话题: filldata话题: int