Той определя броя на елементите във вектора.
b+ дървета
Синтаксис
Да разгледаме вектор 'v' и брой елементи 'n'. Синтаксисът би бил:
int n=v.size();
Параметър
Не съдържа никакъв параметър.
Върната стойност
Връща броя на елементите във вектора.
Пример 1
Нека да видим един прост пример.
#include #include using namespace std; int main() { vector v{'Welcome to javaTpoint','c'}; int n=v.size(); cout<<'size of the string is :'<<n; return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> Size of the string is:2 </pre> <p>In this example, vector v containing two strings and size() function gives the number of elements in the vector.</p> <h2>Example 2</h2> <p>Let's see a another simple example.</p> <pre> #include #include using namespace std; int main() { vector v{1,2,3,4,5}; int n=v.size(); cout<<'size of the vector is :'<<n; return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> Size of the vector is :5 </pre> <p>In this example, vector v containing integer values and size() function determines the number of elements in the vector.</p></'size></pre></'size>
В този пример вектор v, съдържащ два низа и функция size(), дава броя на елементите във вектора.
Пример 2
Нека да видим друг прост пример.
#include #include using namespace std; int main() { vector v{1,2,3,4,5}; int n=v.size(); cout<<\'size of the vector is :\'<<n; return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> Size of the vector is :5 </pre> <p>In this example, vector v containing integer values and size() function determines the number of elements in the vector.</p></\'size>
В този пример вектор v, съдържащ цели числа и функция size() определя броя на елементите във вектора.
\'size>'size>