logo

C++ ベクトル サイズ()

これにより、ベクトル内の要素の数が決まります。

コアJava面接の質問

構文

ベクトル「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>

この例では、2 つの文字列と size() 関数を含むベクトル v によって、ベクトル内の要素の数が得られます。

例 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() 関数がベクトル内の要素の数を決定します。