当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ Vector size()用法及代码示例


它决定了向量中元素的数量。

用法

考虑向量 'v' 和元素数量 'n'。语法是:

int n=v.size();

参数

它不包含任何参数。

返回值

它返回向量中的元素数。

例子1

让我们看一个简单的例子。

#include<iostream>
#include<vector>
using namespace std;
int main()
{
	vector<string> v{"Welcome to javaTpoint","c"};
	int n=v.size();
	cout<<"Size of the string is:"<<n;
	return 0;
}

输出:

Size of the string is:2

在这个例子中,包含两个字符串的向量 v 和 size() 函数给出了向量中元素的数量。

例子2

让我们看另一个简单的例子。

#include<iostream>
#include<vector>
using namespace std;
int main()
{
	vector<int> v{1,2,3,4,5};
	int n=v.size();
	cout<<"Size of the vector is:"<<n;
	return 0;
}

输出:

Size of the vector is:5

在此示例中,包含整数值的向量 v 和 size() 函数确定向量中的元素数量。





相关用法


注:本文由纯净天空筛选整理自 C++ Vector size()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。