gpt4 book ai didi

c++ - 在函数声明中使用 ->

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:04:19 25 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
What is “->” after function declaration?

我刚刚看到以下使用新的 auto 关键字的 C++ 函数示例,我希望有人能帮助我理解语法的含义。

template <class T, class U>
auto add(T t, U u) -> decltype(t + u);

auto f = [](int a, int b) -> int {
return a*b;
};

具体来说,我对函数签名中 -> 的用户感到困惑,我希望将这些写在 as 中

template <class T, class U>
auto add(T t, U u)
{
decltype(t + u);
}

auto f = [](int a, int b){
return a*b;
};

-> 运算符在那里做什么,我在哪里可以了解有关此语法的更多信息?

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