本文整理汇总了C++中Sequence::cend方法的典型用法代码示例。如果您正苦于以下问题:C++ Sequence::cend方法的具体用法?C++ Sequence::cend怎么用?C++ Sequence::cend使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Sequence
的用法示例。
在下文中一共展示了Sequence::cend方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: while
bool Sequence::operator==(const Sequence& that) const {
if (this->length() != that.length())
return false;
auto this_it = this->cbegin(),
that_it = that.cbegin();
while (this_it != this->cend() && that_it != that.cend()) {
if (*this_it != *that_it)
return false;
++this_it;
++that_it;
}
return true;
}
示例2: sequenceString
QString KeyLogger::sequenceString(const Sequence & sequence)
{
QStringList keys;
std::vector<int> keyList(sequence.cbegin(), sequence.cend());
std::sort(keyList.begin(), keyList.end(), std::greater<int>());
for(int keyCode : keyList)
{
auto stringFound = KEY_STRING_MAP.find(keyCode);
keys << (stringFound != KEY_STRING_MAP.end() ?
stringFound->second :
KEY_TO_STRING(keyCode));
}
return keys.join(" + ");
}