memset与memcpy如何在C语言或C++中使用(c,C++,memset,开发技术)

时间:2024-05-02 21:54:52 作者 : 石家庄SEO 分类 : 开发技术
  • TAG :

对数组的整体赋值,以及两个数组间的复制容易出错,这里使用string头文件中的memset和memcpy进行

不必遍历数组,速度快。

之前没有头文件,显示decla

代码:

/* Project: 数组的整体赋值与复制 Date: 2018/07/31 Author: Frank Yu memset(数组名,0或-1,字节) memcpy(数组名,数组名,字节)*/#include<iostream>#include<cstring> //memset需要头文件 #include<cstdio>#define n 5using namespace std;int main(){ int a[n]; int b[n]; memset(a,0,sizeof(a));//初始化为0 //memset(b,1,sizeof(b));//初始化为1,错误 memset(b,-1,sizeof(b)); printf("请输入%d个数:\n",n); for(int i=0;i<n;i++) { scanf("%d",&a[i]); } printf("第一个数组为:\n"); for(int i=0;i<n;i++) { printf("%d ",a[i]); } printf("\n"); printf("第二个数组为:\n"); for(int i=0;i<n;i++) { printf("%d ",b[i]); } printf("\n"); memcpy(a,b,sizeof(b));//b的元素复制给a printf("第一个数组被第二个数组覆盖后:\n"); for(int i=0;i<n;i++) { printf("%d ",a[i]); } return 0;}

结果截图:

memset与memcpy如何在C语言或C++中使用

20190304更新...

fiil函数需要头文件 algorithm fill执行速度不如memset

fill(first,last,val)对数组进行初始化,first,last为地址,val为值。例如,fill(a,a+5,123) 将数组a的前5个初始化为123。

补充知识:C++ 中使用memset和memcpy 对字符串和字符串数组处理

我就废话不多说了,大家还是直接看代码吧~

#include <iostream>#include <string.h>using namespace std;struct SomeInfo{ char id[30]; char name[30];};struct TotalInfo{ char total[20]; SomeInfo my[10];};class myClass{ public: myClass() { } ~myClass() { } void memcopy(int ,TotalInfo); void print(); private: TotalInfo m_totalInfo; int m_count;}; void myClass::memcopy(int count ,TotalInfo info){ m_count = count; memcpy(&m_totalInfo,&info,sizeof(m_totalInfo));}void myClass::print(){ std::cout << m_totalInfo.total << std::endl; for (int i = 0; i != m_count ; ++i) { std::cout << m_totalInfo.my[i].id << std::endl; std::cout << m_totalInfo.my[i].name << std::endl; }}int main(){ myClass here = myClass(); TotalInfo totalInfo; memset(&totalInfo, 0, sizeof(totalInfo)); char total[20] = "totalInfo.total"; memcpy(totalInfo.total,total,20); int count = 5; for (int i = 0; i != count ; ++i) { char _id[30] = "totalInfo.Some.id"; char _name[30] = "totalInfo.Some.name"; memcpy(totalInfo.my[i].id, _id,sizeof(_id)); memcpy(totalInfo.my[i].name, _name,sizeof(_name)); } here.memcopy(count, totalInfo); here.print(); return 0;}

在main函数的第三行,memset初始化新申请的内存。memset:作用是在一段内存块中填充某个给定的值,它是对较大的结构体或数组进行清零操作的一种最快方法。

一共三个参数,地址,请零(目前做的是清零动作,而不是char型值),地址空间大小。

memcpy 也有三个参数,一个目标地址,源地址,和 大小。

 </div> <div class="zixun-tj-product adv-bottom"></div> </div> </div> <div class="prve-next-news">
本文:memset与memcpy如何在C语言或C++中使用的详细内容,希望对您有所帮助,信息来源于网络。
上一篇:jquery怎么判断元素是否可见下一篇:

9 人围观 / 0 条评论 ↓快速评论↓

(必须)

(必须,保密)

阿狸1 阿狸2 阿狸3 阿狸4 阿狸5 阿狸6 阿狸7 阿狸8 阿狸9 阿狸10 阿狸11 阿狸12 阿狸13 阿狸14 阿狸15 阿狸16 阿狸17 阿狸18