Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道如何使用 c++ 找到 QVector 中两个元素之间的范围。使用 C# 时更容易,如下所示:
QVector aaa; aaa.getRange(item1, item2);
你的问题不是很清楚。通过谷歌搜索 .NET 的 getRange 实际做了什么,它似乎从给定的起始位置返回给定的元素计数。QVector<T> QVector::mid(int pos, int length = -1);对 QVector 做同样的事情。
QVector<T> QVector::mid(int pos, int length = -1);