logo

C++ גודל וקטור()

הוא קובע את מספר האלמנטים בווקטור.

c# מכיל מחרוזת

תחביר

שקול וקטור 'v' ומספר האלמנטים 'n'. תחביר יהיה:

 int n=v.size(); 

פָּרָמֶטֶר

זה לא מכיל שום פרמטר.

ערך החזרה

הוא מחזיר את מספר האלמנטים בווקטור.

דוגמה 1

בואו נראה דוגמה פשוטה.

 #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 המכיל שתי מחרוזות ופונקציית size() נותן את מספר האלמנטים בווקטור.

דוגמה 2

בואו נראה עוד דוגמה פשוטה.

 #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 המכיל ערכי מספר שלם ופונקציית size() קובעת את מספר האלמנטים בווקטור.