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