指针 内存应用

来源:互联网 发布:tensorflow 多gpu 编辑:程序博客网 时间:2024/05/22 01:34
#include <iostream>
using namespace std;
struct STU
{
int id;
char name[10];
};
#define NUM 5
#define SIZE sizeof(struct STU)
void setData(char *pdata,struct STU *pStu)
{
int i=0;
char ch='1';
for(i=0;i<NUM;i+=2)
{
 memcpy(pdata+i,&ch,sizeof(char));
 memcpy(pdata+NUM+i*sizeof(struct STU),pStu+i,sizeof(struct STU));
}
}
void show(char* pdata)
{
int i=0;
for(i=0;i<NUM;i++)
{
if(*(pdata+i)=='1')
{
printf("%d  %s",((struct STU*)(pdata+NUM+i*sizeof(struct STU)))->id,((struct STU*)(pdata+NUM+i*sizeof(struct STU)))->name);
   printf("\n");
}
}
}
int main()
{
struct STU stu[5]={{1000,"mac"},{0},{1001,"win"},{0},{1002,"linux"}};
void* space=NULL;
   space=malloc(NUM+NUM*SIZE);
   memset(space,0,NUM+NUM*SIZE);
   if(!space)
   {
  cout<<"memory error"<<endl;
   }
   setData((char*)space,stu);
   show((char*)space);
return 0;
}
0 0
原创粉丝点击