返回数组指针或引用。
Posted 三二二,
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了返回数组指针或引用。相关的知识,希望对你有一定的参考价值。
法一:基本写法
int (&fun()) [5];
法二:类型别名
using arrT = int[5];
arrT& fun();
法三:尾置返回类型
auto fun() -> int(&) [5];
法四:使用decltype关键字
int a[5] = {1,2,3,4,5};
decltype(a) &fun();
eg:
int a[5] = { 1,2,3,4,5 };
decltype(a) &fun()
{
return a;
}
int main()
{
int (&c)[5] = fun(); //返回一个数组的引用时,要用一个指向含有5个整数的数组的引用来接受它(即类型哟啊相同)!注意指向数组的引用的声明格式。
cout << "befor\t"<<c[1] << endl;
cout << "transfomed!" << endl;
c[1] = 10;
cout << a[1] << endl;
return 0;
}
以上是关于返回数组指针或引用。的主要内容,如果未能解决你的问题,请参考以下文章