gpt4 book ai didi

c++ - 如何显式编写数组引用返回类型?

转载 作者:行者123 更新时间:2023-11-30 04:02:19 25 4
gpt4 key购买 nike

<分区>

我想知道如何明确返回数组引用的函数的返回类型。

typedef int const (Three_Const_Ints)[3];

Three_Const_Ints const & foo ()
{
static int const values[] = { 0, 1, 2 };
return values;
}

int const (&)[3] bar () // Does not compile. What is the proper syntax?
{
static int const values[] = { 0, 1, 2 };
return values;
}

是的,我可以使用 std::array,但我想知道它的语法。

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