memcpy的用法

xiaoxiao2021-02-28  23

函数原型:void *memcpy(void *dest, const void *src, size_t n);

功能:从源src所指的内存地址的起始位置开始拷贝n个字节到目标dest所指的内存地址的起始位置中

例如1:作用:将s中的字符串复制到字符数组d

#include <stdio.h>

#include <string.h>

int main()

{

    char* s="GoldenGlobalView";

    chard[20];

    clrscr();

    memcpy(d,s,(strlen(s)+1));

    printf("%s",d);

    getchar();

    return 0;

}

输出结果:Golden Global View

 

例如2:作用:将s中第13个字符开始的4个连续字符复制到d中。(0开始)

#include<string.h>

int main(

{

    char* s="GoldenGlobalView";

    char d[20];

    memcpy(d,s+12,4);//从第13个字符(V)开始复制,连续复制4个字符(View)

    d[4]='\0';//memcpy(d,s+12*sizeof(char),4*sizeof(char));也可

    printf("%s",d);

   getchar();

   return 0;

}

输出结果: View

 

例如3:作用:复制后覆盖原有部分数据

#include<stdio.h>

#include<string.h>

intmain(void)

{

    char src[]="******************************";

    char dest[]="abcdefghijlkmnopqrstuvwxyz0123as6";

    printf("destination before memcpy:%s\n",dest);

    memcpy(dest,src,strlen(src));

    printf("destination after memcpy:%s\n",dest);

    return 0;

}

输出结果:

destination before memcpy:abcdefghijlkmnopqrstuvwxyz0123as6

destination after memcpy: ******************************as6

 

strcpy的区别

strcpymemcpy主要有以下3方面的区别。

1、复制的内容不同。strcpy只能复制字符串,而memcpy可以复制任意内容,例如字符数组、整型、结构体、类等。

2、复制的方法不同。strcpy不需要指定长度,它遇到被复制字符的串结束符"\0"才结束,所以容易溢出。memcpy则是根据其第3个参数决定复制的长度。

3、用途不同。通常在复制字符串时用strcpy,而需要复制其他类型数据时则一般用memcpy

转载请注明原文地址: https://www.6miu.com/read-1000160.html

最新回复(0)