- 博客(5)
- 资源 (2)
- 收藏
- 关注
原创 Glog剖析之DLOG
首先来看看Glog文档上是如何介绍DLOG的:Debug Mode SupportSpecial "debug mode" logging macros only have an effect in debug mode and are compiled away to nothing for non-debug mode compiles. Use these macro
2014-03-18 20:07:32 7202 5
转载 C++获得进程CPU使用率
主要使用的API为 GetProcessTimes,经测试,发现和任务管理器中还是比较接近的#include #include typedef long long int64_t;typedef unsigned long long uint64_t;/// 时间转换static uint64_t file_time_2_utc(const
2013-05-30 16:09:03 3987
转载 为什么C++编译器不能支持对模板的分离式编译
转载于: http://blog.csdn.net/pongba/article/details/19130首先,一个编译单元(translation unit)是指一个.cpp文件以及它所#include的所有.h文件,.h文件里的代码将会被扩展到包含它的.cpp文件里,然后编译器编译该.cpp文件为一个.obj文件(假定我们的平台是win32),后者拥有PE(Portable Ex
2013-03-05 17:23:41 736
原创 python 序列化和反序列化
import pickleclass Data: a = 1 def get(self): return self.a def printLog(self): print "hello" data = Data()data.my = "add a message."file_out = file( "data.d
2012-12-25 20:21:20 785
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人