上一页 1 ··· 12 13 14 15 16
  2020年4月14日
摘要: @[toc] 前言: c 数据类型 ( 指针变量名)(参数表); c void ( p)(int a, int b); //p是一个指向函数的指针变量 void p(int a, int b); //p是函数名,此函数的返回值类型为void指针 c void fun(int a, int b) {} 阅读全文
posted @ 2020-04-14 14:20 JJ_S 阅读(415) 评论(0) 推荐(0) 编辑
摘要: 翻译自:https://thispointer.com//c 11 multithreading part 1 three different ways to create threads/ 这篇文章主要讨论在C++11中如何利用std::thread创建线程 C++11线程库介绍 最早的C++标准 阅读全文
posted @ 2020-04-14 14:03 JJ_S 阅读(926) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16