gpt4 book ai didi

c++ - 类方法的返回类型推导? C++1y

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:35:08 26 4
gpt4 key购买 nike

C++14 中的成员函数是否允许返回类型推导,还是仅适用于自由函数?

我问是因为我隐含地假设它会起作用,但在 gcc 4.8.1 中我得到一个内部编译器错误(“in gen_type_die_with_usage”)。我第一次遇到这样一个神秘的错误,所以我有点怀疑;我知道他们从那时起就更改了规范。

为了清楚起见,这对我有用:

auto foo() {return 5;}

但这不是:

class Bar{
auto baz() {return 5;}
}

标准草案允许这样做吗?

最佳答案

是的,根据论文n3582,标准应该允许这样做.这是论文中的一个例子。

Allowing non-defining function declarations with auto return type is not strictly necessary, but it is useful for coding styles that prefer to define member functions outside the class:

    struct A {
auto f(); // forward declaration
};
auto A::f() { return 42; }

and if we allow it in that situation, it should be valid in other situations as well. Allowing it is also the more orthogonal choice; in general, I believe that if combining two features can work, it should work.

根据@bamboon 的评论,“从 gcc 4.9 开始才支持返回类型推导。”这样就可以解释为什么您没有它。

关于c++ - 类方法的返回类型推导? C++1y,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19846097/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com