std::strncpy 简介

std::strncpy

 
Defined in header <cstring>

 char *strncpy( char *dest, const char *src, std::size_t count );


If count is reached before the entire string src was copied, the resulting character array is not null-terminated.Copies at most count characters of the byte string pointed to by src (including the terminating null character) to character array pointed to by dest.

If, after copying the terminating null character from srccount is not reached, additional null characters are written todest until the total of count characters have been written.

If the strings overlap, the behavior is undefined.

Parameters

dest    pointer to the character array to copy to

src    pointer to the byte string to copy from

count    maximum number of characters to copy

Return value

dest

Example

 1 #include <iostream>
 2 #include <cstring>
 3 using namespace std;
 4 
 5 int main ()
 6 {
 7   char str1[]= "To be or not to be";
 8   char str2[6];
 9   strncpy (str2,str1,5);
10   str2[5]='\0';
11   cout<<str2;
12   return 0;
13 }

Output:

1  To be

 

posted on 2012-07-20 16:02  NLP新手  阅读(672)  评论(0编辑  收藏  举报

导航