logo

C++ 문자열 크기()

이 함수는 문자열의 길이를 바이트 단위로 반환하는 데 사용됩니다. 용량과 반드시 ​​같지는 않지만 문자열 객체의 내용을 따르는 실제 바이트 수를 정의합니다.

마이스페이스가 뭐야?

통사론

다음과 같은 문자열 객체를 고려해보세요. 'str' . 이 문자열 개체의 크기를 계산하려면 해당 구문은 다음과 같습니다.

 str.size() 

매개변수

이 함수에는 매개변수가 포함되어 있지 않습니다.

리눅스에서 폴더 이름 바꾸기

반환 값

이 함수는 문자열 개체에 있는 문자 수를 반환합니다.

실시예 1

 #include using namespace std; int main() { string str =&apos;Welcome to the javatpoint tutorial&apos;; int size = str.size(); cout &lt;&lt; &apos;length of the string is :&apos; &lt;<size; return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> length of the string is : 34 </pre> <p>In this example, str is a string object containing value &apos;Welcome to the javatpoint tutorial&apos;. We calculate the length of the string using &apos;size&apos; function. </p> <br></size;>

이 예에서 str은 'Javatpoint 튜토리얼에 오신 것을 환영합니다' 값을 포함하는 문자열 객체입니다. 'size' 함수를 사용하여 문자열의 길이를 계산합니다.