由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - c++面试问题
相关主题
c++ template specialization 参数C++ linking 弱问 (one file)
请问const myClass &src 和myClass const &src有什么区别?为啥gcc找不到类的构造函数?
请教2道c++的题问个c++的template的问题
Re: VC里面的stl支持是不是很弱?谁给解释一下这个c question
a c++ questionin-class static member question
C++ template question问一个 char * 和 char [] 的问题
c++ 得最基本问题请教boost::any compile错误。
C++一个string的小问题问个C++ TEMPLATE 的问题
相关话题的讨论汇总
话题: const话题: template话题: int话题: foo话题: class
进入Programming版参与讨论
1 (共1页)
c********2
发帖数: 56
1
1)
class foo{
public:
foo(int i){}
};
class bar: virtual foo{
public:
bar(){}
};
bar b;
what's wrong with the above code
2)
class X{
public:
X& operator=(const X& rhs);
const X& operator+(const X&rhs) const;
const X& operator+(int m);
private:
int n;
};
int main(){
X a, b, c;
system("pause");
return 0;
}
which one is wrong?
a=c+5;
a=a=b+c;
(a=c+4)=b+2;
a=b+c;
b=a+1;
3)
template<> class Stack
{
public:
int push(char);
char pop();
};
what template<> signify in the exmple class ?
template queue
default template initialization
emplty template declaration
others
s*w
发帖数: 729
2
1) need default constructor for foo
2) 看不懂, const X& operator+(const X&rhs) const; 这个返回 reference 指向谁
啊?总不能是 this, const function 不让改 this
3) 看不懂, 不是普通的 template specialization 吗?

【在 c********2 的大作中提到】
: 1)
: class foo{
: public:
: foo(int i){}
: };
: class bar: virtual foo{
: public:
: bar(){}
: };
: bar b;

c********2
发帖数: 56
3

1) why you need default constructor for foo rather than need virtual
destructor of the Bar?

【在 s*w 的大作中提到】
: 1) need default constructor for foo
: 2) 看不懂, const X& operator+(const X&rhs) const; 这个返回 reference 指向谁
: 啊?总不能是 this, const function 不让改 this
: 3) 看不懂, 不是普通的 template specialization 吗?

1 (共1页)
进入Programming版参与讨论
相关主题
问个C++ TEMPLATE 的问题a c++ question
size不固定的struct怎么定义呀?C++ template question
operator() overloading 一问c++ 得最基本问题
基本功不扎实,问个问题C++一个string的小问题
c++ template specialization 参数C++ linking 弱问 (one file)
请问const myClass &src 和myClass const &src有什么区别?为啥gcc找不到类的构造函数?
请教2道c++的题问个c++的template的问题
Re: VC里面的stl支持是不是很弱?谁给解释一下这个c question
相关话题的讨论汇总
话题: const话题: template话题: int话题: foo话题: class