首页 > 代码库 > 返回数组指针或引用。
返回数组指针或引用。
法一:基本写法
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;
}
返回数组指针或引用。
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。