容器类
string
static constexpr size_type npos = size_type(-1); // npos = -1// 从 pos 开始查找某个子串,找不到返回 npos (即-1),否则返回第一次出现的下标
constexpr size_type find(const basic_string& str, size_type pos = 0) const noexcept;
static constexpr size_type npos = size_type(-1); // npos = -1// 从 pos 开始查找某个子串,找不到返回 npos (即-1),否则返回第一次出现的下标
constexpr size_type find(const basic_string& str, size_type pos = 0) const noexcept;