摘要: C++ 11 新特性 1.nullptr 2.auto、decltype C++11: template<typename T, typename U> auto add(T x, U y) -> decltype(x+y) { return x+y; } C++14: template<typen 阅读全文
posted @ 2020-08-05 14:00 buerdepepeqi 阅读(190) 评论(0) 推荐(0) 编辑