logo

Rozmiar wektora C++()

Określa liczbę elementów wektora.

sortowanie tablicowe Java

Składnia

Rozważmy wektor „v” i liczbę elementów „n”. Składnia byłaby następująca:

 int n=v.size(); 

Parametr

Nie zawiera żadnego parametru.

Wartość zwracana

Zwraca liczbę elementów wektora.

Przykład 1

Zobaczmy prosty przykład.

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

W tym przykładzie wektor v zawierający dwa ciągi znaków i funkcja size() podaje liczbę elementów wektora.

Przykład 2

Zobaczmy inny prosty przykład.

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

W tym przykładzie wektor v zawierający wartości całkowite i funkcja size() określają liczbę elementów wektora.