首页 > 后端开发 > C++ > C语言中的内存操作是什么?

C语言中的内存操作是什么?

王林
发布: 2023-08-26 13:05:08
转载
1199 人浏览过

C语言中的内存操作是什么?

库 #include 包含了基本的内存操作。虽然不严格属于字符串函数,但这些函数的原型在 #include 中声明。

这些内存操作如下:

void *memchr (void *s, int c, size_t n); 在缓冲区中搜索字符。
int memcmp (void *s1, void *s2, size_t n); 比较两个缓冲区。
void *memcpy (void *dest, void *src, size_t n); 将一个缓冲区复制到另一个缓冲区。
void *memmove (void *dest, void *src, size_t n); 将一定数量的字节从一个缓冲区移动到另一个缓冲区。
void *memset (void *s, int c, size_t n); 将缓冲区的所有字节设置为给定字符。

请注意,在所有情况下,都是复制字节的内存。sizeof() 函数再次派上了用场。

memcpy(dest, src, SIZE); 复制字符(字节)
memcpy(idest, isrc, SIZE*sizeof(int)); 复制整数数组

memmove() behaves in exactly the same way as memcpy() except, that the source and destination locations may overlap.
登录后复制

memcmp() is similar to strcmp() except here, unsigned bytes are compared and returns less than zero if si is less than s2 etc.
登录后复制

例如,

char src[SIZE], dest[SIZE];
int isrc[SIZE], idest[SIZE];
登录后复制

以上是C语言中的内存操作是什么?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:tutorialspoint.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板