首页
归档
标签
RSS
debug调试打印日志[printf(),OutputDebugString()]
2020-11-04
#ifdef _DEBUG inline char* getDateTime() { static char nowtime[20]; time_t rawtime; struct tm* ltime; time(&rawt...
查看
ptrdiff_t
2020-11-04
int => ptrdiff_t usigned int => size_t
查看
解决DragQueryFile()在x64下获取文件数量为0
2020-10-30
HDROP hDrop = NULL; HANDLE hProcessHeap = ::GetProcessHeap(); if (NULL != hProcessHeap && ::HeapLock(hProcessHe...
查看
iview
2020-10-29
样式覆盖 样式文件: src\styles\default\index.less // 下拉框,时间弹出动画速度 @animation-time:.3x; Login 赋值 <Login ref="form...
查看
hp-socket 内存加载失败
2020-10-27
c/c++ - 命令行 增加 /Zc:threadSafeInit- (注意后面的减号) https://docs.microsoft.com/zh-cn/cpp/build/reference/zc-threadsafeinit-t...
查看
C++11 生产者消费者
2020-10-21
#include <iostream> #include <deque> #include <thread> #include <mutex> #include <condition_v...
查看
系统服务弹出信息框!
2020-10-20
// dllmain.cpp : 定义 DLL 应用程序的入口点。 #include "pch.h" #include <tchar.h> #include <WtsApi32.h> #pragm...
查看
C++基础 – 容器 – VECTOR
2020-10-20
vector 动态连续数组, 头文件 < vector > 定义: template< class T, class Allocator = std::allocator<T> >...
查看
C++基础 – 容器 – ARRAY
2020-10-20
array c++11封装固定大小数组的容器。不同于vector,不能自动扩展。头文件 < array > 定义: template<class T, std::size_t N > clas...
查看
C++基础 – 容器 – LIST
2020-10-20
list std::list支持从容器的任何位置快速插入和删除元素,不支持随机访问。双向链表,头文件:< list > 定义: template< class T, class Allocator ...
查看
上一页
下一页