返回數組引用的4種函數寫法

#include <iostream> #include <string> using namespace std; //傳入的參數是數組的引用,返回值也是數組的引用 string (&fun(string (&s)[10]))[10] { return s; } //using str_arr = string (&)[10]; /* typedef string str_arr
相關文章
相關標籤/搜索