本文整理汇总了C++中wstring::front方法的典型用法代码示例。如果您正苦于以下问题:C++ wstring::front方法的具体用法?C++ wstring::front怎么用?C++ wstring::front使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类wstring
的用法示例。
在下文中一共展示了wstring::front方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: ToBool
bool ToBool(const wstring& str) {
if (str.empty())
return false;
const wchar_t c = str.front();
return (c == '1' || c == 't' || c == 'T' || c == 'y' || c == 'Y');
}
示例2: IS_STRING
bool JstrChecker::IS_STRING(const wstring &str, wstring &strvl) {
if (str.front() != JsonSymbol::STRING_BOUND || str.back() != JsonSymbol::STRING_BOUND) return false;
strvl = L"";
for (size_t i = 1; i < str.size() - 1; i++) {
if (str[i] == JsonSymbol::ESCAPE_SYM) {
if (i == str.size() - 2) return false;
strvl.push_back(ESCAPE(str[i + 1]));
i++;
} else if (str[i] == JsonSymbol::STRING_BOUND) {
return false;
} else {
strvl.push_back(str[i]);
}
}
return true;
}
示例3: SetFDDistributionPolicy
void Service::SetFDDistributionPolicy(wstring const& distPolicy)
{
if (distPolicy.front() == L'P' || distPolicy.front() == L'p')
{
this->FDDistribution_ = Type::Packing;
}
else if (distPolicy.front() == L'N' || distPolicy.front() == L'n')
{
this->FDDistribution_ = Type::Nonpacking;
}
else if (distPolicy.front() == L'I' || distPolicy.front() == L'i')
{
this->FDDistribution_ = Type::Ignore;
}
else
{
//todo trace for invalid policy input
}
}