memcpy()和memmove()

作者:追风剑情 发布于:2020-3-23 16:25 分类:C

//拷贝数组元素
//void *memcpy(void * restrict s1, const void * restrict s2, size_t n);
//移动数组元素
//void *memmove(void *s1, const void *s2, size_t n);

     上面两个函数都从s2指向的位置拷贝n字节到s1指向的位置,而且返回s1的值。所不同的是,memcpy()的参数带关键字restrict,即memcpy()假设两个内存区域之间没有重叠; 而memmove()不作这样的假设,所以拷贝过程类似于先把所有字节拷贝到一个临时缓冲区,然后再拷贝到最终目的地。如果使用memcpy()时,两区域出现重叠,其行为是未定义的,这意味着该函数可能正常工作,也可能失败。编译器不会在本不该使用memcpy()时禁止你使用,作为程序员,在使用该函数时有责任确保两个区域不重叠。由于这两个函数设计用于处理任何数据类型,所有它们的参数都是两个指向void的指针。C允许把任何类型的指针赋给void*类型的指针

示例

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <stdbool.h> //C99特性
  5. //memcpy()、memmove()
  6. #include <string.h>
  7. #include <math.h>
  8. #include <ctype.h>
  9. #include <tgmath.h>
  10. #include <limits.h>
  11.  
  12. #define SIZE 10
  13. void show_array(const int ar [], int n);
  14.  
  15. //_Static_assert(sizeof(double) == 2 * sizeof(int), "double not twice int size");
  16.  
  17. int main(int argc, char* argv[])
  18. {
  19. int values[SIZE] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
  20. int target[SIZE];
  21. double curious[SIZE / 2] = { 2.0, 2.0e5, 2.0e10, 2.0e20, 5.0e30 };
  22.  
  23. puts("memcpy() used:");
  24. puts("values (original data): ");
  25. show_array(values, SIZE);
  26. memcpy(target, values, SIZE * sizeof(int));
  27. puts("target (copy of values): ");
  28. show_array(target, SIZE);
  29.  
  30. puts("\nUsing memmove() with overlapping ranges:");
  31. memmove(values + 2, values, 5 * sizeof(int));
  32. puts("values -- elements 0-4 copied to 2-6:");
  33. show_array(values, SIZE);
  34.  
  35. puts("\nUsing memcpy() to copy double to int:");
  36. memcpy(target, curious, (SIZE / 2) * sizeof(double));
  37. puts("target -- 5 doubles into 10 int positions:");
  38. show_array(target, SIZE / 2);
  39. show_array(target + 5, SIZE / 2);
  40.  
  41. system("pause");
  42. return 0;
  43. }
  44.  
  45. void show_array(const int ar[], int n)
  46. {
  47. int i;
  48. for (i = 0; i < n; i++)
  49. printf("%d ", ar[i]);
  50. putchar('\n');
  51. }

运行测试
1111.png

标签: C语言

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号