本文整理汇总了C++中valtype::clear方法的典型用法代码示例。如果您正苦于以下问题:C++ valtype::clear方法的具体用法?C++ valtype::clear怎么用?C++ valtype::clear使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类valtype
的用法示例。
在下文中一共展示了valtype::clear方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: DecodeName
static bool DecodeName(valtype& decoded, const std::string& encoded)
{
decoded.clear();
for (std::string::const_iterator i = encoded.begin(); i != encoded.end(); ++i)
{
switch (*i)
{
case '+':
decoded.push_back(' ');
continue;
case '%':
{
if (i + 2 >= encoded.end())
return false;
const std::string hexStr(i + 1, i + 3);
i += 2;
int intChar = 0;
BOOST_FOREACH(char c, hexStr)
{
intChar <<= 4;
if (c >= '0' && c <= '9')
intChar += c - '0';
else
{
c |= (1 << 5);
if (c >= 'a' && c <= 'f')
intChar += c - 'a' + 10;
else
return false;
}
}
decoded.push_back(static_cast<char>(intChar));
continue;
}
default:
decoded.push_back(*i);
continue;
}
}