问题出于我想比较两个string的交集并改写,比如“good morning”和“morning”
我想找到这个“morning”然后改成“afternoon”,于是记起来有compare这个函数,
我是这样写的
string s{"good morning"},s2{"morning"};
auto beg=s.begin();
if(s.compare(beg,s2.size(),s2));
结果显示参数列表不匹配。。。
问题出于我想比较两个string的交集并改写,比如“good morning”和“morning”
我想找到这个“morning”然后改成“afternoon”,于是记起来有compare这个函数,
我是这样写的
string s{"good morning"},s2{"morning"};
auto beg=s.begin();
if(s.compare(beg,s2.size(),s2));
结果显示参数列表不匹配。。。