2018-06-02 C++

C++

1.c++中string::npos的一些用法总结

  • 1.1.关于npos的定义:
    在MSDN中有如下说明:
    basic_string::npos
    static const size_type npos=-1;
    定义:The constant is the largest representable value of type size_type.It is assuredly larger than max_size(); hence it serves as either a very large value or as a special code;
    以上的意思是npos是一个常数,表示size_type的最大值,许多容器都能提供这个东西,用来表示不存在的位置,类型一般是std::container_type::size_type
  • 1.2.npos的用法
    1.2.1.npos可以表示string的结束位子,是string::type_size类型的,也就是find()返回的类型。find函数在找不到指定值得情况下会返回string::npos,作为一个返回值,表示没有找到匹配项。
    1.2.2.string::npos作为string的成员函数的一个长度参数时,表示“直到字符串结束”。

2.C++中find()函数的使用方法

  • 原型如下:
    (1) size_t find(const string&str, size_t pos = 0) const;//查找对象----string类对象;
    (2)size_t find(const char*s, size_t pos = 0) const;//查找对象----字符串;
    (3)size_t find(const char*s, size_t pos, size_t n) const;//查找对象----从pos开始查找,搜索字符串的前n个字符;
    (4)size_t find(char c, size_t pos = 0) const;//查找对象----字符;

你可能感兴趣的:(2018-06-02 C++)