获取QList指定值的下标
时间: 2023-02-13 07:04:58 浏览: 610
双重qlist用法
如果你想要在 QList 中查找指定的值,并返回其下标,你可以使用 QList 的 indexOf() 函数。例如:
```
QList<int> list;
list << 1 << 2 << 3 << 4 << 5;
int value = 3;
int index = list.indexOf(value); // index = 2
```
indexOf() 函数会在 QList 中查找给定的值,如果找到,就返回其下标,否则返回 -1。
阅读全文