basic_string::assign
문자열 내용에 새로운 문자 값을 할당합니다.
basic_string<CharType, Traits, Allocator>& assign(
const value_type* _Ptr
);
basic_string<CharType, Traits, Allocator>& assign(
const value_type* _Ptr,
size_type _Count
);
basic_string<CharType, Traits, Allocator>& assign(
const basic_string<CharType, Traits, Allocator>& _Str,
size_type off,
size_type _Count
);
basic_string<CharType, Traits, Allocator>& assign(
const basic_string<CharType, Traits, Allocator>& _Str
);
basic_string<CharType, Traits, Allocator>& assign(
size_type _Count,
value_type _Ch
);
template<class InIt>
basic_string<CharType, Traits, Allocator>& assign(
InputIterator _First,
InputIterator _Last
);
basic_string<CharType, Traits, Allocator>& assign(
const_pointer _First,
const_pointer _Last
);
basic_string<CharType, Traits, Allocator>& assign(
const_iterator _First,
const_iterator _Last
);
매개 변수
_Ptr
대상 문자열을 할당 하는 C 문자열의 문자에 대 한 포인터입니다._Count
기껏해야 원본 문자열에서 추가 되는 문자의 개수입니다._Str
소스 문자는 대상 문자열에 지정 하는 문자열입니다._Ch
문자 할당 될 값입니다._First
입력된 반복기, const_pointer, 또는 const_iterator 원본 문자열의 첫 문자 주소 지정 대상 범위를 할당할 수 합니다._Last
입력된 반복기, const_pointer, 또는 const_iterator 원본 문자열의 마지막 문자 범위를 벗어나는 중 주소 지정 대상 범위를 할당할 수 합니다.off
위치 새 문자 지정이 시작 됩니다.
반환 값
멤버 함수에 의해 할당 되 고 새 문자 문자열 개체 참조입니다.
설명
새 문자 값에서 문자열을 할당할 수 있습니다.새 값은 단일 문자 또는 문자열이 고 문자열 C 수 있습니다.연산자 = 단일 매개 변수로; 새 값을 나타낼 수 있는 경우 사용할 수 있습니다 그렇지 않으면 멤버 함수 할당에 있는 여러 매개 변수를 사용할 수 있습니다 부분 문자열이 대상 문자열에 할당 하는 작업을 지정 합니다.
예제
// basic_string_assign.cpp
// compile with: /EHsc
#include <string>
#include <iostream>
int main( )
{
using namespace std;
// The first member function assigning the
// characters of a C-string to a string
string str1a;
const char *cstr1a = "Out There";
cout << "The C-string cstr1a is: " << cstr1a << "." << endl;
str1a.assign ( cstr1a );
cout << "Assigning the C-string cstr1a to string str1 gives: "
<< str1a << "." << endl << endl;
// The second member function assigning a specific
// number of the of characters a C-string to a string
string str1b;
const char *cstr1b = "Out There";
cout << "The C-string cstr1b is: " << cstr1b << endl;
str1b.assign ( cstr1b , 3 );
cout << "Assigning the 1st part of the C-string cstr1b "
<< "to string str1 gives: " << str1b << "."
<< endl << endl;
// The third member function assigning a specific number
// of the characters from one string to another string
string str1c ( "Hello " ), str2c ( "Wide World " );
cout << "The string str2c is: " << str2c << endl;
str1c.assign ( str2c , 5 , 5 );
cout << "The newly assigned string str1 is: "
<< str1c << "." << endl << endl;
// The fourth member function assigning the characters
// from one string to another string in two equivalent
// ways, comparing the assign and operator =
string str1d ( "Hello" ), str2d ( "Wide" ), str3d ( "World" );
cout << "The original string str1 is: " << str1d << "." << endl;
cout << "The string str2d is: " << str2d << endl;
str1d.assign ( str2d );
cout << "The string str1 newly assigned with string str2d is: "
<< str1d << "." << endl;
cout << "The string str3d is: " << str3d << "." << endl;
str1d = str3d;
cout << "The string str1 reassigned with string str3d is: "
<< str1d << "." << endl << endl;
// The fifth member function assigning a specific
// number of characters of a certain value to a string
string str1e ( "Hello " );
str1e.assign ( 4 , '!' );
cout << "The string str1 assigned with eclamations is: "
<< str1e << endl << endl;
// The sixth member function assigning the value from
// the range of one string to another string
string str1f ( "Hello " ), str2f ( "Wide World " );
cout << "The string str2f is: " << str2f << endl;
str1f.assign ( str2f.begin ( ) + 5 , str2f.end ( ) - 1 );
cout << "The string str1 assigned a range of string str2f is: "
<< str1f << "." << endl << endl;
}
요구 사항
헤더: <string>
네임 스페이스: std