本文整理汇总了C++中PathIterator::compare方法的典型用法代码示例。如果您正苦于以下问题:C++ PathIterator::compare方法的具体用法?C++ PathIterator::compare怎么用?C++ PathIterator::compare使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PathIterator
的用法示例。
在下文中一共展示了PathIterator::compare方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: if
Path::Path(const Path &from_prefix, const Path &from_suffix)
: _is_segment(from_prefix._is_segment)
, _components(from_prefix._components)
{
//::std::cout << "\nCONCAT CONSTRUCT: " << from_prefix.toString() << " " << from_suffix.toString();
for (constPathIterator it = from_suffix.begin(); it != from_suffix.end(); ++it)
{
//::std::cout << "APPENDING: " << *it << "\n";
if (it->compare("..") == 0)
{
if (_components.size() > 0)
{
_components.pop_back();
}
else if (_is_segment)
{
_components.push_back(*it);
}
else
{
throw ::std::invalid_argument("Path segment \"" + from_suffix.toString() +
"\" cannot be appended to path \"" + from_prefix.toString() + "\".");
}
}
else if (it->compare(".") == 0)
{ /* skip */
}
else
{
_components.push_back(*it);
}
}
}
示例2: isWildcard
bool Path::isWildcard() const
{
for (constPathIterator it = begin(); it != end(); ++it)
{
if ((it->compare("*") == 0) || (it->compare("**") == 0))
{
return true;
}
}
return false;
}