由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - c++问题
相关主题
请教一个C++的题目,谢谢Bloomerg 还没放弃我。 电话二面经过。
问个构造函数的问题C++ online Test 一题
问2个以前版面的CS面试题string permutation,怎么处理重复字母?
A家面试题刚刚结束的linkedIn电面
FB的这道题怎么答?请教 Iterator 一题
发一个有趣的java题test C# lib with developed by others in visual studio 2013 (转载)
array 转换成 linkedlist, 在线等, 挺急的--help is still nee面筋(已狗家为主,因为其余记不清了)
One C++ question请教一个关于java comparator的问题
相关话题的讨论汇总
话题: args话题: public话题: arg话题: class
进入JobHunting版参与讨论
1 (共1页)
H*M
发帖数: 1268
1
given two classes
class B
{
public:
B(args_1);
B(args_2);
// and many constructors with different arg lists
};
class D : public B
{
public:
D(args_1) : B(args_1) {}
D(args_2) : B(args_2) {}
// and many constructors with different signatures similarly implemented
// some additional stuff specific to D
};
Assume that the arg list for B's constructors are quite long and may be revi
sed pretty often in the future, in which case D's constructors have to be re
coded correspondingly. Duplicating the up
s******7
发帖数: 386
2
是不是用template?
H*M
发帖数: 1268
3
programming版有大牛也说是用template,但是怎么用呢?

【在 s******7 的大作中提到】
: 是不是用template?
h*********e
发帖数: 56
4
这道题是不是问设计模式啊?
提供一个factory method, which takes arbitrary parameters and returns an
instance of B. Call this method in constructor of D.
s*****e
发帖数: 60
5
Refer to Class Template in http://www.cplusplus.com/doc/tutorial/templates/, it looks similar to the struct solution you thought.
1 (共1页)
进入JobHunting版参与讨论
相关主题
请教一个关于java comparator的问题FB的这道题怎么答?
发发我自己的Bloomberg的面经发一个有趣的java题
一道brianbench C++题array 转换成 linkedlist, 在线等, 挺急的--help is still nee
再帖一遍Amazon Onsite的题One C++ question
请教一个C++的题目,谢谢Bloomerg 还没放弃我。 电话二面经过。
问个构造函数的问题C++ online Test 一题
问2个以前版面的CS面试题string permutation,怎么处理重复字母?
A家面试题刚刚结束的linkedIn电面
相关话题的讨论汇总
话题: args话题: public话题: arg话题: class