operator +=

+= 연산자는 기존 문자열에 추가합니다.

가시성
Public
시그니처
const OMString& operator+=(const OMString& s);

const OMString& operator+=(const char s);

const OMString& operator+=(const char * s);
매개변수
s

문자열에 추가할 문자입니다.

리턴값

업데이트된 문자열입니다.


피드백