logo

Ц++ векторска величина()

Одређује број елемената у вектору.

јава стринг низа

Синтакса

Размотримо вектор 'в' и број елемената 'н'. Синтакса би била:

 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>

У овом примеру, вектор в који садржи два низа и функцију сизе() даје број елемената у вектору.

Пример 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>

У овом примеру, вектор в који садржи целобројне вредности и функцију сизе() одређује број елемената у вектору.