在C++中,int
数组的长度是固定的,不能直接获取数组的长度。但是,您可以使用std::vector
来创建一个动态数组,其长度可以在运行时确定。
以下是一个使用std::vector
的示例:
#include<iostream>
#include<vector>
int main() {
std::vector<int> my_vector = {1, 2, 3, 4, 5};
int length = my_vector.size();
std::cout << "The length of the vector is: "<< length<< std::endl;
return 0;
}
在这个示例中,我们使用std::vector
来创建一个动态数组,并使用size()
函数来获取数组的长度。
领取专属 10元无门槛券
手把手带您无忧上云