C++获取vector数组的长度
时间: 2023-09-11 15:05:52 浏览: 148
CC++中获取数组的长度.pdf
使用 `vector` 的成员函数 `size()` 可以获取其长度(即元素个数)。例如:
```cpp
#include <iostream>
#include <vector>
int main() {
std::vector<int> v = {1, 2, 3, 4};
std::cout << "The length of vector is: " << v.size() << std::endl;
return 0;
}
```
输出:
```
The length of vector is: 4
```
阅读全文