logo

C++ vektorméret()

Meghatározza a vektor elemeinek számát.

hoppá koncepció java-ban

Szintaxis

Tekintsünk egy 'v' vektort és 'n' elemek számát. A szintaxis a következő lenne:

 int n=v.size(); 

Paraméter

Nem tartalmaz semmilyen paramétert.

Visszatérési érték

Visszaadja a vektor elemeinek számát.

1. példa

Lássunk egy egyszerű példát.

 #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>

Ebben a példában a két karakterláncot és size() függvényt tartalmazó v vektor megadja a vektor elemeinek számát.

2. példa

Lássunk egy másik egyszerű példát.

 #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>

Ebben a példában az egész értékeket tartalmazó v vektor és a size() függvény határozza meg a vektor elemeinek számát.