今天我遇到另一个问题,在我写的代码里,
vs2015,c++/c 程序
有一个函数,返回一个结构体,
组长说这样是不可以的,
我还和他说我以前写的代码里有返回结构体的,
现在还运行的好好的,这么就不行了,
为此,他还发了火,
想问一下大佬们,返回一个结构体这样到底行不行?
代码简化版贴出来了:
#include
#include
#include
#include
using namespace std;
#pragma warning(disable:4996)
typedef struct user_info
{
char type;
char name[16];
char passwd[16];
}INFO;
INFO get_info(char c)
{
INFO a1;
a1.type = 'c';
strcpy(a1.name, "abcde");
strcpy(a1.passwd, "123456");
return a1;
}
int main()
{
INFO n;
n = get_info('a');
cout << n.type << endl;
cout << n.name << endl;
cout << n.passwd << endl;
getchar();
return 1;
}
说什么你的程序能运行起来算你运气好,说什么局部变量返回会出错,
我就纳闷了,返回int这样的函数
int aaa()
{
int as;
as=5;
return as;
}
难道有错吗?那么返回结构体咋就不对了?
INFO get_info(char c)
{
INFO a1;
a1.type = 'c';
strcpy(a1.name, "abcde");
strcpy(a1.passwd, "123456");
return a1;
}