计算机二级C++模拟题一(附参考答案&解析)
模拟题一
一、选择题
1.已知Value是一个类,value是Value的一个对象。下列以非成员函数形式重载的运算符函数原形中,正确的是______
A.Value operator+(Value v,int i);B.Value operator+(Value v=value,int i);C.Value operator+(Value V,int i=0);D.Value operator+(Value v=value,int i=0);
2.有如下类定义: class Date{ public: Date(int y=2014, int m=9, int d=9):year(y), month(m), day(d){} ______(ostream&stream, Date&ddd); //运算符<<的声明 private: int year, month, day; };
若要使语句序列 D
共有 0 条评论