logo

Taille du vecteur C++()

Il détermine le nombre d'éléments dans le vecteur.

parent jquery

Syntaxe

Considérons un vecteur « v » et un nombre d'éléments « n ». La syntaxe serait :

 int n=v.size(); 

Paramètre

Il ne contient aucun paramètre.

Valeur de retour

Il renvoie le nombre d'éléments dans le vecteur.

Exemple 1

Voyons un exemple simple.

 #include #include using namespace std; int main() { vector v{&apos;Welcome to javaTpoint&apos;,&apos;c&apos;}; int n=v.size(); cout&lt;<'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&apos;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&lt;<'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>

Dans cet exemple, le vecteur v contenant deux chaînes et la fonction size() donne le nombre d'éléments dans le vecteur.

Exemple 2

Voyons un autre exemple simple.

 #include #include using namespace std; int main() { vector v{1,2,3,4,5}; int n=v.size(); cout&lt;<\'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>

Dans cet exemple, le vecteur v contenant des valeurs entières et la fonction size() détermine le nombre d'éléments dans le vecteur.