本文整理汇总了C++中Cont::pop_back方法的典型用法代码示例。如果您正苦于以下问题:C++ Cont::pop_back方法的具体用法?C++ Cont::pop_back怎么用?C++ Cont::pop_back使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Cont
的用法示例。
在下文中一共展示了Cont::pop_back方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: operator
void operator()(Cont& c, long count) {
long cnt = count * 10;
if (cnt > c.size()) {
cout << "RemoveBack: not enough elements"
<< endl;
return;
}
for (long i = 0; i < cnt; i++)
c.pop_back();
}
示例2: updateContainer
void updateContainer(Cont<T, Alloc>& cont) {
// flip a coin to determine using emplace_back() with 80% of likelihood, or pop_back() with 20% of likelihood.
static std::bernoulli_distribution dist(.8);
if (cont.empty() || dist(S1::s_gen)) {
cont.emplace_back();
} else {
cont.pop_back();
}
// and with 20% likelihood mutating 1st and last elem's std::string field
if (!cont.empty() && !dist(S1::s_gen)) {
cont.front().m_str.append("- foo");
cont.back().m_str.append("- bar");
}
}