1. 程式人生 > >返回數組指針或引用。

返回數組指針或引用。

類型別名 end 別名 使用 聲明 return 類型 int 個數

法一:基本寫法

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;
}

返回數組指針或引用。