logo

C++ Veličina vektora()

Određuje broj elemenata u vektoru.

dodati nizu u Javi

Sintaksa

Razmotrimo vektor 'v' i broj elemenata 'n'. Sintaksa bi bila:

 int n=v.size(); 

Parametar

Ne sadrži nijedan parametar.

Povratna vrijednost

Vraća broj elemenata u vektoru.

Primjer 1

Pogledajmo jednostavan primjer.

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

U ovom primjeru vektor v koji sadrži dva niza i funkciju size() daje broj elemenata u vektoru.

Primjer 2

Pogledajmo još jedan jednostavan primjer.

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

U ovom primjeru vektor v koji sadrži cjelobrojne vrijednosti i funkciju size() određuje broj elemenata u vektoru.