问题描述
解决方案
String 中find 函数的使用
string.find()函数用法
string中find函数用法
解决方案二:
感觉他是想判断找到了6的情况,很怪异的用法
解决方案三:
我在我自己电脑上敲了同样的代码,没有问题啊
```string strTemp = "12345";
int nLen = strTemp.length();
int nIndex = strTemp.find("6", 0);
bool b = false;
if (nIndex < nLen)
{
b = true;
}
时间: 2024-09-10 07:40:44