logo

C++-vektorin koko()

Se määrittää vektorin elementtien lukumäärän.

str.replace javassa

Syntaksi

Tarkastellaan vektoria 'v' ja elementtien lukumäärää 'n'. Syntaksi olisi:

 int n=v.size(); 

Parametri

Se ei sisällä mitään parametria.

Palautusarvo

Se palauttaa vektorin elementtien määrän.

Esimerkki 1

Katsotaanpa yksinkertainen esimerkki.

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

Tässä esimerkissä vektori v, joka sisältää kaksi merkkijonoa ja size()-funktion, antaa vektorin elementtien lukumäärän.

Esimerkki 2

Katsotaanpa toinen yksinkertainen esimerkki.

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

Tässä esimerkissä vektori v, joka sisältää kokonaislukuarvot ja size()-funktion, määrittää vektorin elementtien lukumäärän.