本文整理汇总了C++中SV::find_last_of方法的典型用法代码示例。如果您正苦于以下问题:C++ SV::find_last_of方法的具体用法?C++ SV::find_last_of怎么用?C++ SV::find_last_of使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SV
的用法示例。
在下文中一共展示了SV::find_last_of方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
int main(int, char**)
{
{
typedef std::string_view S;
test0<S>();
test1<S>();
test2<S>();
test3<S>();
}
#if TEST_STD_VER > 11
{
typedef std::basic_string_view<char, constexpr_char_traits<char>> SV;
constexpr SV sv1;
constexpr SV sv2 { "abcde", 5 };
static_assert (sv1.find_last_of( "", 0, 0) == SV::npos, "" );
static_assert (sv1.find_last_of( "irkhs", 0, 5) == SV::npos, "" );
static_assert (sv2.find_last_of( "", 0, 0) == SV::npos, "" );
static_assert (sv2.find_last_of( "gfsrt", 5, 5) == SV::npos, "" );
static_assert (sv2.find_last_of( "lecar", 5, 5) == 4, "" );
}
#endif
return 0;
}
示例2: main
int main()
{
{
typedef std::string_view S;
test(S(""), 'm', 0, S::npos);
test(S(""), 'm', 1, S::npos);
test(S("kitcj"), 'm', 0, S::npos);
test(S("qkamf"), 'm', 1, S::npos);
test(S("nhmko"), 'm', 2, 2);
test(S("tpsaf"), 'm', 4, S::npos);
test(S("lahfb"), 'm', 5, S::npos);
test(S("irkhs"), 'm', 6, S::npos);
test(S("gmfhdaipsr"), 'm', 0, S::npos);
test(S("kantesmpgj"), 'm', 1, S::npos);
test(S("odaftiegpm"), 'm', 5, S::npos);
test(S("oknlrstdpi"), 'm', 9, S::npos);
test(S("eolhfgpjqk"), 'm', 10, S::npos);
test(S("pcdrofikas"), 'm', 11, S::npos);
test(S("nbatdlmekrgcfqsophij"), 'm', 0, S::npos);
test(S("bnrpehidofmqtcksjgla"), 'm', 1, S::npos);
test(S("jdmciepkaqgotsrfnhlb"), 'm', 10, 2);
test(S("jtdaefblsokrmhpgcnqi"), 'm', 19, 12);
test(S("hkbgspofltajcnedqmri"), 'm', 20, 17);
test(S("oselktgbcapndfjihrmq"), 'm', 21, 18);
test(S(""), 'm', S::npos);
test(S("csope"), 'm', S::npos);
test(S("gfsmthlkon"), 'm', 3);
test(S("laenfsbridchgotmkqpj"), 'm', 15);
}
#if _LIBCPP_STD_VER > 11
{
typedef std::basic_string_view<char, constexpr_char_traits<char>> SV;
constexpr SV sv1;
constexpr SV sv2 { "abcde", 5 };
static_assert (sv1.find_last_of( 'i', 0 ) == SV::npos, "" );
static_assert (sv1.find_last_of( 'i', 1 ) == SV::npos, "" );
static_assert (sv2.find_last_of( 'a', 0 ) == 0, "" );
static_assert (sv2.find_last_of( 'a', 1 ) == 0, "" );
static_assert (sv2.find_last_of( 'e', 5 ) == 4, "" );
}
#endif
}