logo

حجم ناقل C++ ()

يحدد عدد العناصر في المتجه.

بايثون نظام التشغيل listdir

بناء الجملة

خذ بعين الاعتبار المتجه '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() تحدد عدد العناصر في المتجه.