摘要:
MD5.h#ifndef MD5H#define MD5H#include #include void ROL(unsigned int &s, unsigned short cx); //32位数循环左移实现函数void ltob(unsigned int &i);... 阅读全文
摘要:
我们都被告诫,new和delete,new[]和delete[]要成对出现。如果使用delete释放new[] 申请的空间会发什么?如下:T* p = new T [1024];....//do somethingdelete p;//会发生什么?我先告诉你,如果T是... 阅读全文
摘要:
C++的宏函数单例模式#define DECLARE_SINGLETON( class_name ) \ public: \ static class_name * instance() ... 阅读全文
摘要:
windows 做一个WORD 和LONG#define MAKEWORD(a, b) ((WORD)(((BYTE)((DWORD_PTR)(a) & 0xff)) | ((WORD)((BYTE)((DWORD_PTR)(b) & 0xff))) > ... 阅读全文
摘要:
__LINE__, 行号__FUNCTION__ 函数void func(){ printf("source line %d, in function %s",__LINE__,__FUNCTION__);} int main(){ func(); ... 阅读全文
摘要:
工作需要维护一款可视化工具,要安装QT http://download.qt.io/archive/qt/ 阅读全文
摘要:
#include using namespace std;/** std::pair主要的作用是将两个数据组合成一个数据,两个数据可以是同一类型或者不同类型。例如std::pair 或者 std::pair等。pair实质上是一个结构体,其主要的两个成员变量是firs... 阅读全文
摘要:
reinterpret_cast编辑reinterpret_cast是C++里的强制类型转换符。外文名reinterpret_cast隶 属C++语言类 型强制类型转换符作 用把一个指针转换成一个整数等目录1简介2用法简介编辑reinterpret_... 阅读全文
摘要:
static_cast编辑该运算符把expression转换为type-id类型,但没有运行时类型检查来保证转换的安全性。中文名暂无外文名static_cast分 类强制类型转换类 型C++ static_cast目录1用法2简介用法编辑static_ca... 阅读全文
摘要:
#define GL_POINTS 0x0000 //点#define GL_LINES 0x0001 //线#define GL_LINE_LOOP ... 阅读全文