本文介绍了string :: npos是什么意思的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
string :: npos
是什么意思
found=str.find(str2);
if (found!=string::npos)
cout << "first 'needle' found at: " << int(found) << endl;
推荐答案
未找到。
它通常定义如下:
static const size_type npos = -1;
最好比较npos而不是-1,因为代码更清晰。
It is better to compare to npos instead of -1 because the code is more legible.
这篇关于string :: npos是什么意思的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!