随笔分类 - C++
摘要:http://ideone.com/ http://coliru.stacked-crooked.com/ http://gcc.godbolt.org/ http://liveworkspace.org/
阅读全文
摘要:https://blog.csdn.net/ZYC88888/article/details/88298904 https://www.jianshu.com/p/a0f55548fddd
阅读全文
摘要:http://eigen.tuxfamily.org/index.php?title=Main_Page
阅读全文
摘要:what's open mark??? http://www.open.ac.uk/openmarkexamples/
阅读全文
摘要:使用过的一个enum class的用法:enum class EModel : int { Model1, Model2, Model3, Other = 4, }; EModel SRiverGetTorqueModelType(const int typeCount) { switch (typ
阅读全文
摘要:用法: #include "windows.h" DWORD lastTime =0;DWORD currentTime = 0;DWORD spendTime = 0; lastTime = GetTickCount();//ms //延时 currentTime = GetTickCount()
阅读全文
摘要:析构函数,跟构造函数这些成员函数,是跟sizeof无关的,因为我们的sizeof是针对实例,而普通成员函数,是针对类体的,一个类的成员函数,多个实例也共用相同的函数指针,所以自然不能归为实例的大小。 https://www.cnblogs.com/jason2013/articles/4316900
阅读全文
摘要:目前在用processOn网站进行绘制:https://www.processon.com/ 学习其简单的入门教程: https://www.processon.com/support https://jingyan.baidu.com/article/6fb756ec75db3a241858fb0
阅读全文
摘要:https://jingyan.baidu.com/article/5d6edee2c9dd2b99ebdeec55.html
阅读全文
摘要:共享内存 (也叫内存映射文件) 主要是通过映射机制实现的 , Windows 下进程的地址空间在逻辑上是相互隔离的 , 但在物理上却是重叠的 ; 所谓的重叠是指同一块内存区域可能被多个进程同时使用 , 当调用 CreateFileMapping 创建命名的内存映射文件对象时 , Windows 即在
阅读全文
摘要:https://blog.csdn.net/oncealong/article/details/28599655
阅读全文
摘要:https://docs.microsoft.com/zh-cn/cpp/error-messages/tool-errors/linker-tools-error-lnk2019?f1url=https%3A%2F%2Fmsdn.microsoft.com%2Fquery%2Fdev15.quer
阅读全文
摘要:https://www.jianshu.com/p/92459fc683fc
阅读全文
摘要:https://www.cnblogs.com/huty/p/8517004.html
阅读全文