• strdup与strcpy


    strdup与strcpy具体的区别,以及在不同操作系统下的使用。

    strdup

    原型:

    extern char *strdup(char *s);

    用法:#include <string.h>

    功能:复制字符串s

    说明:返回指向被复制的字符串的指针,所需空间由malloc()分配且可以由free()释放。

    举例: // strdup.c

     

    [cpp]
    1. #include <string.h>  
    2. #include <stdio.h>  
    3. int main(void) {  
    4.     char *from = "Golden Global View"
    5.     char *to = strdup(from);  
    6.     printf("%s",to); 
    7.     free(to); 
    8.     return 0;  
    9. }  

     

    strcpy

    原型:

    extern char *strcpy(char *dest,char *src);

    用法:#include <string.h>

    功能:把src所指由NULL结束的字符串复制到dest所指的数组中

    说明:src和dest所指内存区域不可以重叠且dest必须有足够的空间来容纳src的字符串。 返回指向dest的指针。

    举例: // strcpy.c

    [cpp]
    1. #include <string.h> 
    2. #include <stdio.h>  
    3. int main(void) {  
    4.     char *from="Golden Global View";  
    5.     char to[20];  
    6.     strcpy(to,from); 
    7.     printf("%s",to); 
    8.     return 0;  

     

    strdup不是标准的C函数,strdup可以直接把要复制的内容复制给没有初始化的指针(注意用完要free,否则出现内存泄露)因为它会自动在堆上分配空间给目的指针;strcpy的目的指针一定是已经分配内存的指针。

    strdup实现如下:

    [cpp]
    1. char *strdup(constchar *s) {  
    2.     char *t = NULL;  
    3.     if(s && (t = (char*)malloc((strlen(s)+1)))  
    4.     strcpy(t, s);  
    5.     return t;  
  • 相关阅读:
    fastjson 简单使用 及其JSONObject使用
    HttpClient 的使用
    python操作excel xlwt (转)
    matplotlib 设置标题 xy标题等
    matplotlib 饼状图
    Mac下面 matplotlib 中文无法显示解决
    matplotlib 折线图
    matplotlib条形图
    matplotlib直方图
    python matplotlib配置
  • 原文地址:https://www.cnblogs.com/kungfupanda/p/3017016.html
Copyright © 2020-2023  润新知