strdup函数的用法
转贴 程序例:
函数名: strdup
功 能: 将串拷贝到新建的位置处 用 法: char *strdup(char *str);
函数名: strcpy 功 能: 串拷贝 用 法: char *strcpy(char *str1, char *str2); 程序例:
|
分类:Jasmine的C和C++ |
The difference between strcpy() and strdup():
strcpy will not allocate the memory for the copy for you, which means you have to give it not only the pointer to the string to copy, but also a pointer to the place to copy it to, which you have set up yourself. strdup will grab itself a place to copy the string to, which you will have to free up later when you don't need the copy anymore.
函数名: strdup
功 能: 将串拷贝到新建的位置处
用 法: char *strdup(char *str);
程序例:
功 能: 将串拷贝到新建的位置处
用 法: char *strdup(char *str);
程序例:
- C/C++ code
-
#include < stdio.h > #include < string .h > #include < alloc.h > int main( void ) { char * dup_str, * string = " abcde " ; dup_str = strdup( string ); printf( " %s\n " , dup_str); free(dup_str); return 0 ; }
函数名: strcpy
功 能: 串拷贝
用 法: char *strcpy(char *str1, char *str2);
程序例:
- C/C++ code
-
#include < stdio.h > #include < string .h > int main( void ) { char string [ 10 ]; char * str1 = " abcdefghi " ; strcpy( string , str1); printf( " %s\n " , string ); return 0 ; }
************************************************
strdup不是标准的c函数,所以linux会报错!~
strcpy是标准的c函数,在windows里报错是因为指针没申请空间吧!~
可以先strlen判断from的大小,之后为to申请空间,之后再strcpy就不会报错了!~
strcpy是标准的c函数,在windows里报错是因为指针没申请空间吧!~
可以先strlen判断from的大小,之后为to申请空间,之后再strcpy就不会报错了!~
*************************************************
strdup可以直接把要复制的内容复制给没有初始化的指针,因为它会自动分配空间给目的指针
strcpy的目的指针一定是已经分配内存的指针
strcpy的目的指针一定是已经分配内存的指针
*************************************************