C++ //练习 5.4 说明下列例子的含义,如果存在问题,试着修改它。
C++ Primer(第5版) 练习 5.4
练习 5.4 说明下列例子的含义,如果存在问题,试着修改它。
(a) while(string::iterator iter != s.end()) { /* ... */ }
(b) while(bool status = find(word)) { /* ... */ }
if(!status) { /* ... */ }
环境:Linux Ubuntu(云服务器)
工具:vim
代码块
(a) string::iterator iter = s.begin();
while(iter != s.end()) { /* ... */ }
(b) while(bool status = find(word))
if(!status) { /* ... */ }