
c/c++
百恼
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C语言编程需要注意的64位和32机器的区别
from:http://blog.163.com/tianle_han/blog/static/6617826200910663018319/ 一、数据类型特别是int相关的类型在不同位数机器的平台下长度不同。C99标准并不规定具体数据类型的长度大小,只规定级别。作下比较: 16位平台 char 1个字节8位 short 2个字节16位 int 2个字节16位 long 4个字节32转载 2015-08-17 21:27:53 · 4864 阅读 · 0 评论 -
The Embedded C++ Programming Guide Lines
The Embedded C++ Programming Guide Lines转载 2016-09-17 22:23:18 · 557 阅读 · 0 评论 -
C/C++中,‘#’的作用
C/C++中,'#'的作用转载 2016-09-25 21:49:24 · 1078 阅读 · 0 评论 -
C++并行计算
并行计算原创 2016-10-26 09:43:45 · 6008 阅读 · 0 评论 -
A singleton template-based approach
单例模式模版写法原创 2018-02-09 11:23:23 · 248 阅读 · 0 评论 -
C/C++ 资源集
单元测试 1、Unity - Curiously Powerful Unit Testing in C for C 2、CMock - Automagical generation of stubs and mocks for Unity Tests 3、Ceeding - Test build management 4、CException - Lightweight exception...原创 2018-06-12 08:59:05 · 461 阅读 · 0 评论 -
opencppcoverage 代码覆盖率
在使用 Qt 进行编程时,Qt 为开发者提供了单元测试框架,对代码进行单元测试。 但是,Qt Creator 却没有提供“代码覆盖率”相关方面的工具,开发者无法获知单元测试是否完整等情况。 通过百度等搜索工具了解到: 开源方案1,QtCreatorCoveragePlugin: https://github.com/3Hren/QtCreatorCoveragePlugin/wiki 开源...原创 2018-07-03 22:44:53 · 2739 阅读 · 0 评论