2021年12月30日

摘要: // 你必须定义一个 `main()` 函数入口。 #include <iostream> using namespace std; #include <string.h> typedef const char* FX_LPCSTR; typedef char FX_CHAR; typedef in 阅读全文
posted @ 2021-12-30 07:49 lydstory 阅读(56) 评论(0) 推荐(0)
摘要: 开源基础库的性能 函数 一般优秀于商业未经过大批量测试的代码??? 算法 开源基础优秀的代码 》优秀的方法 阅读全文
posted @ 2021-12-30 06:58 lydstory 阅读(29) 评论(0) 推荐(0)
摘要: // 你必须定义一个 `main()` 函数入口。 #include <iostream> using namespace std; #include <string.h> typedef const char* FX_LPCSTR; typedef char FX_CHAR; typedef in 阅读全文
posted @ 2021-12-30 06:41 lydstory 阅读(34) 评论(0) 推荐(0)
摘要: int main() { void *p; cout<<sizeof(p)<<endl; return 0; } 8 指针 返回指针 阅读全文
posted @ 2021-12-30 06:15 lydstory 阅读(27) 评论(0) 推荐(0)
摘要: // 你必须定义一个 `main()` 函数入口。 #include <iostream> using namespace std; #include <string.h> typedef const char* FX_LPCSTR; typedef char FX_CHAR; typedef in 阅读全文
posted @ 2021-12-30 06:06 lydstory 阅读(35) 评论(0) 推荐(0)
摘要: 1.基础数据类型 内存分配 动态数组 2.const char * 和 const wchar_t * 数据类型 3.设计模式 4.通信机制 5.系统原理优越性(多线程 多进程) 6.缓冲 文件系统 阅读全文
posted @ 2021-12-30 05:44 lydstory 阅读(21) 评论(0) 推荐(0)
摘要: #include <limits> #include <iostream> // /* reference: http://www.cplusplus.com/reference/limits/numeric_limits/ https://msdn.microsoft.com/en-us/libr 阅读全文
posted @ 2021-12-30 04:54 lydstory 阅读(493) 评论(0) 推荐(0)
摘要: enum RangeConstraint { RANGE_VALID = 0x0, // Value can be represented by the destination type. RANGE_UNDERFLOW = 0x1, // Value would overflow. RANGE_O 阅读全文
posted @ 2021-12-30 04:01 lydstory 阅读(35) 评论(0) 推荐(0)
摘要: // 你必须定义一个 `main()` 函数入口。 #include <iostream> using namespace std; typedef const char* FX_LPCSTR; typedef char FX_CHAR; typedef int FX_STRSIZE; class 阅读全文
posted @ 2021-12-30 03:13 lydstory 阅读(43) 评论(0) 推荐(0)
摘要: struct bb{ int a; char bb;}; 8class aa{ private: long dd; char b;}; 16 阅读全文
posted @ 2021-12-30 03:12 lydstory 阅读(35) 评论(0) 推荐(0)
摘要: struct CFX_StringData { long m_nRefs; int m_nDataLength; int m_nAllocLength; char m_String[1]; }; sizeof 24 struct CFX_StringData { long m_nRefs; int 阅读全文
posted @ 2021-12-30 03:08 lydstory 阅读(20) 评论(0) 推荐(0)
摘要: 协议通道、内存 对文档的处理 对协议的处理 对音视频的处理.... 阅读全文
posted @ 2021-12-30 03:03 lydstory 阅读(25) 评论(0) 推荐(0)
摘要: // 你必须定义一个 `main()` 函数入口。 #include <iostream> using namespace std; typedef const char* FX_LPCSTR; class CFX_Object { public: void* operator new(size_t 阅读全文
posted @ 2021-12-30 02:50 lydstory 阅读(30) 评论(0) 推荐(0)
摘要: void *malloc(size_t size); void free(void *ptr); void *calloc(size_t nmemb, size_t size); void *realloc(void *ptr, size_t size); 函数 返回值 参数 阅读全文
posted @ 2021-12-30 02:42 lydstory 阅读(28) 评论(0) 推荐(0)
摘要: #include <iostream> using namespace std; typedef const char* FX_LPCSTR; class CFX_Object { public: void* operator new(size_t size, FX_LPCSTR file, int 阅读全文
posted @ 2021-12-30 02:36 lydstory 阅读(33) 评论(0) 推荐(0)

导航