Tag: Windows
All the articles with the tag "Windows".
windows任务栏高亮
Published: at 11:35 AMvoid startAlert(HWND hwnd, int durationMs, int timeoutMs) { FLASHWINFO info; info.cbSize = sizeof(info); info.hwnd = hwnd; info.dwFlags = FLASHWTRAY; info.dwTimeout = timeoutMs; info.uCount = durationMs == 0 ? 10 d...
无法定位程序输入点strnlen于动态链接库msvcrt.dll上(Qt XP)
Published: at 06:58 AMQt应用程序在XP(sp3)系统上出现上述错误 使用的Qt版本是5.6.2,我的应用程序中包含D3Dcompiler47.dll和opengl32sw.dll 解决方法1: 移除D3Dcompiler47.dll文件只使用opengl32sw.dll是可以的 解决方法2: 毕竟xp现在用的人比较少,方法1为了适应xp而移除文件总...
Robomongo连接远程MongoDB数据库
Published: at 02:49 PM修改远程服务器上mongodb配置 打开/etc/mongodb.conf配置文件将bindip注释起来,如: bindip = 127.0.0.1 创建管理员用户 mongo use admin db.createUser({user"admin",pwd"admin",roles{"role""userAdminAnyDatabase","db""admin"}}) // 重启服...
用内存映射的方式在文件末尾追加一个hello
Published: at 10:08 AMinclude <windows.h> include <iostream> using namespace std; int tmain(int argc, TCHAR argv) { HANDLE hFile = CreateFile("one.dat", GENERICREAD GENERICWRITE, FILESHAREREAD FILESHAREWRITE, NULL, OPENEXISTING, NULL, NULL); ...
统计程序实例的个数
Published: at 10:04 AM/windows核心编程实例17-AppInst/ /展示:应用程序如何知道在任一时刻有多少个自己的实例正在运行/ include <windows.h> include "resource.h" int guMsgAppInstCountUpdate = WMAPP + 123; pragma dataseg("Shared") volatile LONG glApplicationInst...
类模板之单链表
Published: at 10:00 AM// Chain.h ifndef CHAINH define CHAINH template<class T> class ChainNode { public T data; ChainNode<T> link; }; template<class T> class Chain { public Chain(); Chain(); bool IsEmpty() const; int Length() co...
常见排序算法
Published: at 09:51 AM/插入排序/ include <iostream> using namespace std; template <class T> void SWAP(T &x, T &y) { T t; t = x; x = y; y = t; } template <class T> void Insert(T a, int n, const T x) { int i; for (i = n-1; i >= 0 && x < ai; ...
类模板之队列
Published: at 09:52 AM// Queue.h ifndef QUEUEH define QUEUEH template<class T> class Queue { public Queue(int size = 10); Queue(); bool IsEmpty() const; bool IsFull() const; T First() const; T Last() const; Queue<T>& Add(const T &x); ...
多文件统计字频
Published: at 09:48 AM假如有60个文件, 文件名为:zipin1.txt到zipin60.txt 文件格式(词语是汉字串,词频是数字): > 词语 词频 词语 词频 . . . 所有文件中的词语包括顺序都是一样的,只是词频不一样, 现在要把所有文件中相同词语的词频加起来以相同的...
对char与wchar_t一些疑惑的理解
Published: at 01:00 PM对于char和wchart我们知道前者用来存储一个字节后者可以用来存储两个字节,所以像字母数字之类的ascii编码的字符都可以用char来存储。然而,汉字是需要两个字节才能存储的,所以用wchart才能符合我们的需求。但是我们经常看到char用于一些汉字方面的处理,这样就产生了一些疑...