标题:返回值--警告
取消只看楼主
九天冥盟
Rank: 2
等 级:论坛游民
威 望:1
帖 子:77
专家分:20
注 册:2015-7-14
结帖率:36%
 问题点数:0 回复次数:1 
返回值--警告

代码如下:
struct Stu
{
    char Name[20];
    char ID[20];
    int a;
};

char * GetStudentID(Stu stu)
{

   /*
    char *temp=stu.ID;
    return temp;
   */
  
    return stu.ID;
}

char * GetStudentName(Stu *stu)
{
    return stu->Name;
}
int main()
{
    Stu stu;
    strcpy(stu.ID,"001");
    strcpy(stu.Name,"name");

    if(strcmp(GetStudentID(stu),"000")==0)
        cout<<"yes"<<endl;
    else
        cout<<"no"<<endl;
    return 0;
}

编译就会出现警告:[Warning] address of local variable 'stu' returned [-Wreturn-local-addr]

如果是红色部分
为函数GetStudentID的实现部分,就没有警告;
为什么会出现这种情况;最好解释一下,谢谢!!

搜索更多相关主题的帖子: 警告 Stu char Name return 
2018-05-12 17:22
九天冥盟
Rank: 2
等 级:论坛游民
威 望:1
帖 子:77
专家分:20
注 册:2015-7-14
得分:0 
回复 2楼 Jonny0201
不是GetStudentName函数所发出的警告
2018-05-14 14:05



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-486867-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.959580 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved