다음을 통해 공유


char_traits::copy

지정한 수의 문자 한 문자열에서 다른 위치로 복사합니다.

호출자가에 전달 된 값이 올바른지 확인 하므로이 메서드는 잠재적으로 안전 하지 않습니다.대신 char_traits::_Copy_s를 사용하십시오.

static char_type *copy(
   char_type* _To, 
   const char_type* _From, 
   size_t _Num 
);

매개 변수

  • _To
    복사한 일련의 문자를 받을 대상 문자열 또는 문자 배열 시작 부분에 있는 요소입니다.

  • _From
    복사할 원본 문자열 또는 문자 배열에 있는 요소입니다.

  • _Num
    복사할 요소의 개수입니다.

반환 값

첫 번째 요소 복사 일련의 문자를 받을 대상 문자열 또는 문자 배열로 복사 합니다.

설명

원본 및 대상 문자 시퀀스를 중첩 되어야 합니다.

예제

// char_traits_copy.cpp
// compile with: /EHsc /W3
#include <string>
#include <iostream>

int main( )
{
   using namespace std;

   char_traits<char>::char_type s1[] = "abcd-1234-abcd";
   char_traits<char>::char_type s2[] = "ABCD-1234";
   char_traits<char>::char_type* result1;
   cout << "The source string is: " << s1 << endl;
   cout << "The destination string is: " << s2 << endl;
   // Note: char_traits::copy is potentially unsafe, consider
   // using char_traits::_Copy_s instead.
   result1 = char_traits<char>::copy ( s1 , s2 , 4 );  // C4996
   cout << "The result1 = copy ( s1 , s2 , 4 ) is: "
        << result1 << endl;
}
  

요구 사항

헤더: <string>

네임 스페이스: std

참고 항목

참조

char_traits Struct