当前位置: 编程语言>c/c++
C++ Strings(字符串) 成员 find():在字符串中查找字符
发布时间:2014-1-19
本文导语: C++ Strings(字符串) 成员 find():在字符串中查找字符
查找(find)
语法:
size_type find( const basic_string &str, size_type index );
size_type find( const char *str, size_type index );
size_type find( const char *str, size_type index, size_type length );
size_type find( ...