本文整理汇总了C++中Q3ValueVector::insert方法的典型用法代码示例。如果您正苦于以下问题:C++ Q3ValueVector::insert方法的具体用法?C++ Q3ValueVector::insert怎么用?C++ Q3ValueVector::insert使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Q3ValueVector
的用法示例。
在下文中一共展示了Q3ValueVector::insert方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: QCOMPARE
void tst_Q3ValueVector::insert()
{
// insert at the beginning
Q3ValueVector<int> a;
a.insert( a.begin(), 1 );
QCOMPARE( a[0], 1 );
// insert at the end
a.insert( a.end(), 2 );
QCOMPARE( a[1], 2 );
// insert in the middle
Q3ValueVector<int>::iterator it_a = a.begin();
a.insert( ++it_a, 3 );
QCOMPARE( a[1], 3 );
// now testing the overloaded insert() which takes an
// argument for the number of items to insert
// we'll insert two of each value
Q3ValueVector<int> b;
b.insert( b.begin(), 2, 1 );
QCOMPARE( b[0], 1 );
QCOMPARE( b[1], 1 );
// insert at the end
b.insert( b.end(), 2, 2 );
QCOMPARE( b[2], 2 );
QCOMPARE( b[3], 2 );
// insert in the middle
Q3ValueVector<int>::iterator it_b = b.begin();
b.insert( ++++it_b, 2, 3 );
QCOMPARE( b[2], 3 );
QCOMPARE( b[3], 3 );
}