传送门 ==>> AutoSAR实战系列300讲「糖果Autosar」总目录
1 C++ 中的 string::npos 示例
什么是 string::npos:
- 它是一个常量 静态成员值,对于size_t类型的元素具有最高可能值。
- 它实际上意味着直到字符串的结尾。
- 它用作字符串成员函数中长度参数的值。
- 作为返回值,它通常用于表示不匹配。
句法:
静态常量 size_t npos = -1;
其中,npos是一个常量静态值,对于****size_t类型的元素具有最高可能值,它用 -1 定义。
程序1:下面是说明****string::npos 使用的C++程序:
- C++
// C++ program to demonstrate the use
// of string::npos
#include <bits/stdc++.h>
using namespace std;
// Function that using string::npos
// to find the index of the occurrence
// of any string in the given string
void fun(string s1, string s2)
{
// Find position of string s2
int found = s1.find(s2);
// Check if position is -1 or not
if (found != string::npos) {
cout << "first " << s2
<< " found at: "
<< (found) << endl;
}
else
cout << s2 << " is not in"
<< "the string" << endl;
}
// Driver Code
int main()
{
// Given strings
string s1 = "geeksforgeeks";
string s2 = "for";
string s3 = "no";
// Function Call
fun(s1, s2);
return 0;
}
输出:
first for found at: 5
解释:在上面的程序中string:npos常量定义为 -1 的值,因为size_t是一个无符号整数类型,而 -1 是这个类型的最大可能表示值。