06 2021 档案

摘要:##YCM 托管库地址:https://github.com/ycm-core/YouCompleteMe 这里有英文描述的安装过程,分别对于:Win, Linux, BSD描述 以下是我的个人安装过程 ##环境配置 确认下列环境已经安装: 工具:Git 开发环境:MSVC(Visual Studi 阅读全文
posted @ 2021-06-30 15:04 windin 阅读(1216) 评论(0) 推荐(0)
摘要:在使用多个线程读写同一个变量时,可能会出现与预期不符的情况。 线程的执行顺序每次都可能不一样,因为顺序由操作系统调度顺序决定。 //多线程读写测试函数 private static void MultiThreadsRW() { int i; i = 0; Thread t1 = new Threa 阅读全文
posted @ 2021-06-28 14:14 windin 阅读(87) 评论(0) 推荐(0)