变量模板
C++14
引入了变量模板,使得可以为变量定义模板
1 2 3 4 5 |
template<typename T> constexpr T pi = T(3.1415926535897932385); std::cout << pi<double> << std::endl; // 输出 3.14159... std::cout << pi<float> << std::endl; // 输出 3.14159f |
make_unique
C++14
引入了std::make_unique
,提供了一种创建std::unique_ptr
的简便方式std::make_unique
是一个模板函数,用于创建std::unique_ptr
实例- 它返回一个右值,这意味着返回的
std::unique_ptr
可以被移动但不能被复制
- 类似于C++11中的
std::make_shared
1 2 3 |
#include <memory> std::unique_ptr<int> p = std::make_unique<int>(10); |
decltype(auto)
C++14
引入了decltype(auto)
,可以在返回类型推导时保留表达式的值类型decltype
规则:decltype(x)
的类型是int
decltype((x))
的类型是int&
- 如果
x
是一个变量名,那么decltype(x)
返回该变量的类型,即int
- 如果
x
被括号包围,即(x)
,那么decltype((x))
返回该表达式的类型,而括号包围的变量名x
是一个左值(lvalue),所以decltype((x))
返回左值引用类型int&
1 2 3 4 |
int x = 0; decltype(auto) foo() { return (x); // 返回类型为int& } |
1 2 3 4 |
int x = 0; decltype(auto) foo() { return x; // 返回类型为 int } |
integral_constant
C++14
扩展了std::integral_constant
,使得其可以更灵活地用于模板元编程
1 2 3 4 |
#include <type_traits> std::integral_constant<int, 42> ic; std::cout << ic() << std::endl; // 输出 42 |
exchange
C++14
引入了std::exchange
,用于交换对象并返回旧值
1 2 3 4 5 6 |
#include <utility> int a = 5; int old_value = std::exchange(a, 10); std::cout << "Old value: " << old_value << ", New value: " << a << std::endl; // 输出 Old value: 5, New value: 10 |
tuple和pair改进
C++14
中,std::tuple
和std::pair
增加了一些方便的成员函数
1 2 3 4 5 6 7 |
#include <tuple> std::tuple<int, double, std::string> t = std::make_tuple(1, 2.3, "hello"); int a; double b; std::string c; std::tie(a, b, c) = t; // 解构tuple |
quoted
C++14
引入了std::quoted
,方便对字符串进行转义处理
1 2 3 4 5 6 7 8 9 |
#include <iostream> #include <sstream> #include <iomanip> std::stringstream ss; ss << std::quoted("Hello, world!"); std::string s; ss >> std::quoted(s); std::cout << s << std::endl; // 输出 Hello, world! |
1 2 3 4 5 6 7 8 |
#include <iostream> #include <iomanip> // std::quoted int main() { std::string str = "Hello, \"world\"!"; std::cout << std::quoted(str) << std::endl; // 输出 "Hello, \"world\"!" return 0; } |
本文为原创文章,版权归Aet所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ C++11_四种类型转换11/10
- ♥ Spdlog记述:三07/23
- ♥ C++标准模板库编程实战_关联容器12/07
- ♥ C++标准库_cfenv02/14
- ♥ STL_vector05/02
- ♥ COM组件_207/22