随笔分类 -  02_c/c++技术平台

摘要:写的不错。原文链接如下: https://blog.csdn.net/dviewer/article/details/51943140 部分摘要: 2016年07月18日 16:30:08 阅读数:363 2016年07月18日 16:30:08 阅读数:363 阅读数:363 锁(lock)的代价 阅读全文
posted @ 2018-05-28 18:14 跬步者 阅读(475) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/BjarneCpp/article/details/76135980 起因 我拿到了一套Linux下的C++代码,代码中有这个头文件#include <unistd.h>,在Windows上查看缺少这个头文件,而这个头文件就是Linux中的系统文件。 困惑 阅读全文
posted @ 2018-03-29 18:14 跬步者 阅读(2620) 评论(0) 推荐(0) 编辑
摘要:https://blog.evanxia.com/2017/02/1264 阅读全文
posted @ 2017-12-18 20:10 跬步者 阅读(750) 评论(0) 推荐(0) 编辑
摘要:转自: http://www.cnblogs.com/smartdog/archive/2012/03/30/2425124.html https://www.zhihu.com/question/26201557 推荐两个。一个是MinGW-builds ,直接去MinGW-builds这里下就好 阅读全文
posted @ 2017-11-17 07:04 跬步者 阅读(532) 评论(0) 推荐(0) 编辑
摘要:gcc 指定运行时动态库路径 Leave a reply 由于种种原因,Linux 下写 c 代码时要用到一些外部库(不属于标准C的库),可是由于没有权限,无法将这写库安装到系统目录,只好安装用户目录下如 /home/youname/lib,可是怎么编译才能让程序正常编译,并且正常运行呢。这样使用g 阅读全文
posted @ 2017-11-16 16:58 跬步者 阅读(4506) 评论(0) 推荐(2) 编辑
摘要:from: https://www.cnblogs.com/foohack/p/4629255.html git设置过滤忽略的文件或文件夹 我们一般向代码仓库提交项目的时候,一般需要忽略编译生成的中间文件以及文件夹的提交,因为它们是无用的,而且也会占用仓库的空间。一般只用提交.pro,.sln,ma 阅读全文
posted @ 2017-11-12 20:22 跬步者 阅读(2068) 评论(0) 推荐(0) 编辑
摘要:Centos安装gcc及g++ Centos支持yum安装,安装软件一般格式为yum install .......,注意安装时要先成为root用户。 按照这个思路,我想安装过程如下: 安装gcc:yum install gcc 安装g++: yum install g++ 实际操作过程发现,只能有 阅读全文
posted @ 2017-11-11 16:42 跬步者 阅读(383) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/u012501459/article/details/44132147 阅读全文
posted @ 2017-10-31 15:43 跬步者 阅读(170) 评论(0) 推荐(0) 编辑
摘要:https://www.w3cschool.cn/tutorial 阅读全文
posted @ 2017-09-28 11:53 跬步者 阅读(143) 评论(0) 推荐(0) 编辑
摘要:https://tour.golang.org/basics/1 阅读全文
posted @ 2017-09-20 14:43 跬步者 阅读(686) 评论(0) 推荐(0) 编辑
摘要:一. linux命令大全网站 http://man.linuxde.net/watch 阅读全文
posted @ 2017-08-10 10:21 跬步者 阅读(318) 评论(0) 推荐(0) 编辑
摘要:http://en.cppreference.com/w/ 阅读全文
posted @ 2017-05-05 12:02 跬步者 阅读(498) 评论(0) 推荐(0) 编辑
摘要:http://www.itye.org/archives/3125 gcc 禁止warning 熟悉windows编程的人都知道,禁止编译器输出某个warning,在代码中可以这样 #pragma warning( disable 号码) 例如 #pragma warning(disable 409 阅读全文
posted @ 2017-03-29 12:06 跬步者 阅读(3094) 评论(0) 推荐(0) 编辑
摘要:http://zodiac1111.github.io/blog/config-gcc-warning/ 阅读全文
posted @ 2017-03-23 16:12 跬步者 阅读(111) 评论(0) 推荐(0) 编辑
摘要:1. http://blog.csdn.net/xiajun07061225/article/details/12844801 2. http://blog.csdn.net/v_july_v/article/details/11921021 //很多各大公司的校招面试题。 技术面试题讲解与培训(技 阅读全文
posted @ 2017-03-20 16:09 跬步者 阅读(216) 评论(0) 推荐(0) 编辑
摘要:1. https://solicomo.com/network-dev/protobuf-proto3-vs-proto2.html 2. 阅读全文
posted @ 2017-02-25 15:20 跬步者 阅读(456) 评论(0) 推荐(0) 编辑
摘要:一种写法: 第二种写法: 阅读全文
posted @ 2017-01-24 12:01 跬步者 阅读(1338) 评论(0) 推荐(0) 编辑
摘要:http://stackoverflow.com/questions/9225567/how-to-print-a-int64-t-type-in-c 阅读全文
posted @ 2017-01-11 16:39 跬步者 阅读(2607) 评论(0) 推荐(0) 编辑
摘要:Protobuf 的 proto3 与 proto2 的区别 On 2015-07-17 19:16:00 By Soli Protobuf 的 proto3 与 proto2 的区别 Protobuf 的 proto3 与 proto2 的区别 这是一篇学习笔记。在粗略的看了 Protobuf 的 阅读全文
posted @ 2016-12-20 14:58 跬步者 阅读(2553) 评论(0) 推荐(0) 编辑
摘要:1. MSDN 的标准与使用 https://msdn.microsoft.com/zh-cn/library/3bstk3k5.aspx 2. Cpp在线查看。 http://www.cplusplus.com/ 3. 手册网 http://www.shouce.ren/api/c/index.h 阅读全文
posted @ 2016-12-07 19:41 跬步者 阅读(289) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示