首页 > 代码库 > 2-4. Using auto with Functions
2-4. Using auto with Functions
在C++14中允许使用type deduction用于函数参数和函数返回值
Return Type Deduction in C++11
1 #include <iostream> 2 using namespace std; 3 auto AutoFunctionFromReturn(int parameter) -> int 4 { 5 return parameter; 6 } 7 8 int main() 9 { 10 auto value = http://www.mamicode.com/AutoFunctionFromReturn(1); 11 cout << value << endl; 12 return 0; 13 }
Deducing return types for C++11 template functions
#include <iostream> using namespace std; template <typename T> auto AutoFunctionFromParameter(T parameter) -> decltype(parameter) { return parameter; } int main() { auto value = AutoFunctionFromParameter(2); cout << value << endl; return 0; }
In order to reduce the verbose code
Using auto to Deduce Return Type on a Template Function C++14
#include <iostream> using namespace std; template <typename T> auto AutoFunctionFromParameter(T parameter) { return parameter; } int main() { auto value = AutoFunctionFromParameter(2); cout << value << endl; return 0; }
2-4. Using auto with Functions
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。