logo

C++-Vektorgröße()

Es bestimmt die Anzahl der Elemente im Vektor.

Java-String-Charat

Syntax

Betrachten Sie einen Vektor „v“ und die Anzahl der Elemente „n“. Syntax wäre:

 int n=v.size(); 

Parameter

Es enthält keinen Parameter.

Rückgabewert

Es gibt die Anzahl der Elemente im Vektor zurück.

Beispiel 1

Sehen wir uns ein einfaches Beispiel an.

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

In diesem Beispiel gibt der Vektor v, der zwei Zeichenfolgen enthält, und die Funktion size() die Anzahl der Elemente im Vektor an.

Beispiel 2

Sehen wir uns ein weiteres einfaches Beispiel an.

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

In diesem Beispiel bestimmt der Vektor v, der ganzzahlige Werte enthält, und die Funktion size() die Anzahl der Elemente im Vektor.