标题:返回Prole比它好在哪里呢
取消只看楼主
后卿
Rank: 4
来 自:网络
等 级:业余侠客
帖 子:297
专家分:295
注 册:2016-10-22
结帖率:82.28%
已结贴  问题点数:1 回复次数:0 
返回Prole比它好在哪里呢
程序代码:
typedef struct Role
{
    string Name;
    int Hp;
    int Mp;
} *Prole;
Role CreatMonster(string str, int hp, int mp)
{
    Role ghost{ str,hp,mp };
    return ghost;
}
int main()
{
    Role ghost{ CreatMonster("A",1000,1000) };
    std::cout << ghost.Name;
    system("pause");
}

请问,1.为什么这里第10行返回值时ghost,它是一个局部变量,这段代码还能运行,局部变量不是遇到括号就结束了吗?
2.这种方式返回ROLE,跟返回值Prole,有什么区别吗?返回Prole比它好在哪里呢
返回Prole
程序代码:
Prole CreatMonster(string str, int hp, int mp)
{
    Prole ghost = new Role{ str,hp,mp };
    return ghost;
}

我觉得同样是申请一块内存,在减小开销上并没有区别
搜索更多相关主题的帖子: ghost 返回 str string int 
2023-04-06 12:33



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




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

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