logo

C++ 문자열 push_back()

이 함수는 문자열 끝에 새 문자 ch를 추가하여 길이를 1씩 늘리는 데 사용됩니다.

통사론

문자열 s1 과 문자 ch 를 생각해 보세요. 구문은 다음과 같습니다.

 s1.push_back(ch); 

매개변수

채널 : 추가될 신규 캐릭터입니다.

반환 값

어떤 값도 반환하지 않습니다.

실시예 1

간단한 예를 살펴보겠습니다.

 #include using namespace std; int main() { string s1 = &apos;Hell&apos;; cout&lt;&lt; &apos;String is :&apos; &lt;<s1<<'
'; s1.push_back('o'); cout<<'now, string is :'<<s1; return 0; } < pre> <h2>Example 2</h2> <p>Let&apos;s consider another simple example.</p> <pre> #include using namespace std; int main() { string str = &apos;java tutorial &apos;; cout&lt;<'string contains :' <<str<<'
'; str.push_back('1'); cout<<'now,string is : '<<str; return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> String contains :java tutorial Now,string is java tutorial 1 </pre> <h2>Example 3</h2> <p>Let&apos;s see the example of inserting an element at the end of vector.</p> <pre> #include #include using namespace std; int main() { vector s; s.push_back(&apos;j&apos;); s.push_back(&apos;a&apos;); s.push_back(&apos;v&apos;); s.push_back(&apos;a&apos;); for(int i=0;i<s.size();i++) cout<<s[i]; return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> Java </pre> <br></s.size();i++)></pre></'string></pre></s1<<'
';>

실시예 3

벡터의 끝에 요소를 삽입하는 예를 살펴보겠습니다.

자바 선택 정렬
 #include #include using namespace std; int main() { vector s; s.push_back(&apos;j&apos;); s.push_back(&apos;a&apos;); s.push_back(&apos;v&apos;); s.push_back(&apos;a&apos;); for(int i=0;i<s.size();i++) cout<<s[i]; return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> Java </pre> <br></s.size();i++)>