如下程序定义了“单词”类word,类中重载了

admin2010-04-08  26

问题 如下程序定义了“单词”类word,类中重载了<运算符,用于比较“单词”的大小,返回相应的逻辑值。程序的输出结果为:After Sorting:Happy Welcome,请将程序补充完整。
#include
#include
using namespace std;
class Word{
public:
Word(string s):str(s){}
string getStr(){retum str;}
【  】const{retum(strfriend ostream&operator<<(ostream&output,const W0rd&w)
{output<private:
string str:
};
int main(){
Word wl(”Happy”),w2(“Welcome”);
eout<<”After sorting:”:
if(w1else cout<return 0;
}

选项

答案bool operator<(Word w)

解析 由语句。return(str
转载请注明原文地址:https://kaotiyun.com/show/oAjp777K
0

相关试题推荐
最新回复(0)