结构体指针如何初始化(C++)
#include<iostream>usingnamespacestd;structemployee{intid;floatsalary;};intmain(){empl...
#include <iostream>
using namespace std;
struct employee
{
int id;
float salary;
};
int main()
{
employee **emptr;
*emptr=new employee [4];
return 0;
}
在编译的时候,有一条警告,说我没有对emptr进行初始化,我不会啊?请大家帮忙看看,如何初始化。谢谢 展开
using namespace std;
struct employee
{
int id;
float salary;
};
int main()
{
employee **emptr;
*emptr=new employee [4];
return 0;
}
在编译的时候,有一条警告,说我没有对emptr进行初始化,我不会啊?请大家帮忙看看,如何初始化。谢谢 展开
展开全部
对于像简单的结构体数据,如:
[cpp] view plaincopyprint?
struct A
{
int a;
int b;
};
A temp[4] = { 0 };
struct A
{
int a;
int b;
};
A temp[4] = { 0 };
直接进行初始化。但是如果在结构体中又包含一个类时,再这样进行初始化就会出现严重问题,再第二次使用他时不能成功初始化,直接会导致程序崩溃。如:
[cpp] view plaincopyprint?
struct A
{
int a;
int b;
string c;
};
A temp[4] = { 0 }; //error
struct A
{
int a;
int b;
string c;
};
A temp[4] = { 0 }; //error
而应该是这样的:
[cpp] view plaincopyprint?
struct A
{
int a;
int b;
string c;
};
/*
*temp:结构体指针
*len:结构体数组长度
*/
int InitAStruct(A *temp,int len)
{
for (int i = 0;i < len;i++) {
temp->a = 0;
temp->b = 0;
temp->c = "";
++temp;
}
return 0;
}
//A temp[4] = { 0 }; //error
A temp[4];
InitAStruct(temp,4);//right
struct A
{
int a;
int b;
string c;
};
/*
*temp:结构体指针
*len:结构体数组长度
*/
int InitAStruct(A *temp,int len)
{
for (int i = 0;i < len;i++) {
temp->a = 0;
temp->b = 0;
temp->c = "";
++temp;
}
return 0;
}
//A temp[4] = { 0 }; //error
A temp[4];
InitAStruct(temp,4);//right
因为其中包含了类(string)的存在,所以不能用普通方式进行初始化
[cpp] view plaincopyprint?
struct A
{
int a;
int b;
};
A temp[4] = { 0 };
struct A
{
int a;
int b;
};
A temp[4] = { 0 };
直接进行初始化。但是如果在结构体中又包含一个类时,再这样进行初始化就会出现严重问题,再第二次使用他时不能成功初始化,直接会导致程序崩溃。如:
[cpp] view plaincopyprint?
struct A
{
int a;
int b;
string c;
};
A temp[4] = { 0 }; //error
struct A
{
int a;
int b;
string c;
};
A temp[4] = { 0 }; //error
而应该是这样的:
[cpp] view plaincopyprint?
struct A
{
int a;
int b;
string c;
};
/*
*temp:结构体指针
*len:结构体数组长度
*/
int InitAStruct(A *temp,int len)
{
for (int i = 0;i < len;i++) {
temp->a = 0;
temp->b = 0;
temp->c = "";
++temp;
}
return 0;
}
//A temp[4] = { 0 }; //error
A temp[4];
InitAStruct(temp,4);//right
struct A
{
int a;
int b;
string c;
};
/*
*temp:结构体指针
*len:结构体数组长度
*/
int InitAStruct(A *temp,int len)
{
for (int i = 0;i < len;i++) {
temp->a = 0;
temp->b = 0;
temp->c = "";
++temp;
}
return 0;
}
//A temp[4] = { 0 }; //error
A temp[4];
InitAStruct(temp,4);//right
因为其中包含了类(string)的存在,所以不能用普通方式进行初始化
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
给你个较完善的方案
#include <iostream>
using namespace std;
struct employee
{
int id;
float salary;
};
int main()
{
employee *emptr1=new employee [4];
employee **emptr=&emptr1;
delete *emptr;//此处关掉开辟的空间,避免出现内存问题
return 0;
}
#include <iostream>
using namespace std;
struct employee
{
int id;
float salary;
};
int main()
{
employee *emptr1=new employee [4];
employee **emptr=&emptr1;
delete *emptr;//此处关掉开辟的空间,避免出现内存问题
return 0;
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
employee **emptr=&(new employee [4]);
或者这样:
employee *emptr1=new employee [4];
employee **emptr=&emptr1;
或者这样:
employee *emptr1=new employee [4];
employee **emptr=&emptr1;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include <iostream>
using namespace std;
struct employee
{
int id;
float salary;
};
int main()
{
employee *emptr;
emptr=new employee [4];
return 0;
}
using namespace std;
struct employee
{
int id;
float salary;
};
int main()
{
employee *emptr;
emptr=new employee [4];
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询