logo

C++ 벡터 크기()

벡터의 요소 수를 결정합니다.

knn 알고리즘

통사론

벡터 '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() 함수가 벡터의 요소 수를 결정합니다.