Jis nustato elementų skaičių vektoriuje.
java klasės pavyzdys
Sintaksė
Apsvarstykite vektorių „v“ ir elementų skaičių „n“. Sintaksė būtų tokia:
int n=v.size();
Parametras
Jame nėra jokių parametrų.
Grąžinimo vertė
Jis grąžina vektoriaus elementų skaičių.
1 pavyzdys
Pažiūrėkime paprastą pavyzdį.
#include #include using namespace std; int main() { vector v{'Welcome to javaTpoint','c'}; int n=v.size(); cout<<'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'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<<'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>
Šiame pavyzdyje vektorius v, kuriame yra dvi eilutės ir funkcija size(), nurodo vektoriaus elementų skaičių.
2 pavyzdys
Pažiūrėkime dar vieną paprastą pavyzdį.
#include #include using namespace std; int main() { vector v{1,2,3,4,5}; int n=v.size(); cout<<\'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>
Šiame pavyzdyje vektorius v, kuriame yra sveikųjų skaičių reikšmės ir funkcija size(), nustato vektoriaus elementų skaičių.
\'size>'size>