插入操作:insert()

  函数原型:void QList::insert(int i, const T &value)

  在索引后插入值

  i:索引

  value:插入值

  Example:

  QList list;

  list << "alpha" << "beta" << "delta";

  list.insert(2, "gamma");

  // list: ["alpha", "beta", "gamma", "delta"]

  替换操作:replace()

  函数原型:void QList::replace(int i, const T &value)

  替换索引处的值

  i:索引

  value:替换值

  Example:

  QList list;

  list << "alpha" << "beta" << "delta";

  list.replace(2, "aaa");

  // list: ["alpha", "beta", "aaa"]

  移除操作:removeAt()

  函数原型:void QList::removeAt(int i)

  移除索引位置处的值

  i:索引

  移动操作:move()

  函数原型:void QList::move(int from, int to)

  从哪个索引位置移动到哪个索引位置

  Example:

  QList list;

  list << "A" << "B" << "C" << "D" << "E" << "F";

  list.move(1, 4);

  // list: ["A", "C", "D", "E", "B", "F"]

  交换操作:swap()

  函数原型:void QList::swap(int i, int j)

  两个索引的值进行替换

  Example:

  QList list;

  list << "A" << "B" << "C" << "D" << "E" << "F";

  list.swap(1, 4);

  // list: ["A", "E", "C", "D", "B", "F"]

  表尾添加项目:append()

  函数原型:void QList::append(const T &value)

  在列表的末尾插入值

  Example:

  QList list;

  list.append("one");

  list.append("two");

  list.append("three");

  // list: ["one", "two", "three"]

  表头添加项目:prepend()

  函数原型:void QList::prepend(const T &value)

  在列表的开头插入值

  Example:

  QList list;无锡妇科费用 http://www.wxbhnkyy39.com/

  list.prepend("one");

  list.prepend("two");

  list.prepend("three");

  // list: ["three", "two", "one"]

  移除第一个项目:removeFirst()

  函数原型:void QList::removeFirst()

  删除列表中的第一项

  移除最后一个项目:removeLast()

  函数原型:void QList::removeLast()

  删除列表中的最后一项

  获得一个项目的索引:indexOf()

  函数原型:int QList::indexOf(const T &value, int from = 0) const

  返回列表中的值第一个匹配项的索引位置

  value:需要查询的的列表值

  from:在列表中第几次的值

  Example:

  QList list;

  list << "A" << "B" << "C" << "B" << "A";

  list.indexOf("B"); // returns 1

  list.indexOf("B", 1); // returns 1

  list.indexOf("B", 2); // returns 3

  list.indexOf("X"); // returns -1

  判断是否有相应的项目:contains()

  函数原型:bool QList::contains(const T &value) const

  如果该列表包含值的匹配项,则返回true,否则返回false

  获取一个项目出现的次数:count()

  函数原型:int QList::count(const T &value) const

  返回列表中值得匹配项的数量

  函数原型:int QList::count() const

  返回列表中的项数