logo

C++ Vector size()

Určuje počet prvků ve vektoru.

topologie sítě

Syntax

Uvažujme vektor 'v' a počet prvků 'n'. Syntaxe by byla:

 int n=v.size(); 

Parametr

Neobsahuje žádný parametr.

Návratová hodnota

Vrací počet prvků ve vektoru.

Příklad 1

Podívejme se na jednoduchý příklad.

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

V tomto příkladu vektor v obsahující dva řetězce a funkce size() udává počet prvků ve vektoru.

Příklad 2

Podívejme se na další jednoduchý příklad.

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

V tomto příkladu vektor v obsahující celočíselné hodnoty a funkce size() určuje počet prvků ve vektoru.