摘要:
1. 修饰普通变量 用const修饰的变量是不变的,不能为其赋值。 const int a = 1; int const a = 1; 2. 修饰指针 如果const位于*的左侧,则const就是用来修饰指针所指向的变量,即指针指向为常量; 如果const位于*的右侧,const就是修饰指针本身,即 阅读全文
摘要:
翻译自:https://thispointer.com//c11-multithreading-part-8-stdfuture-stdpromise-and-returning-values-from-thread/ stdfuture对象可以与async,stdpackaged_task和std 阅读全文