会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
闲来敲敲代码......
Click me!
有容乃大:好读书不求甚解
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
3
4
5
6
下一页
2014年6月12日
Socket get http request
摘要: 1 package wuyubao.firstsample; 2 3 import java.io.BufferedReader; 4 import java.io.IOException; 5 import java.io.InputStreamReader; 6 import java.io...
阅读全文
posted @ 2014-06-12 07:36 森语音
阅读(230)
评论(0)
推荐(0)
2014年6月11日
windows系统调用 线程 启动与挂起
摘要: #include "iostream"#include "windows.h"using namespace std;class CWorkerThread{public: CWorkerThread(LPCTSTR m_szName):m_szName(m_szName),m_hThread(IN...
阅读全文
posted @ 2014-06-11 10:48 森语音
阅读(529)
评论(0)
推荐(0)
2014年6月7日
windows namedPipe 命名管道clent and server
摘要: 1.client: 1 #include "iostream" 2 #include "windows.h" 3 4 using namespace std; 5 void main(int argc,char* argv[]) 6 { 7 LPCTSTR Mess...
阅读全文
posted @ 2014-06-07 09:41 森语音
阅读(2001)
评论(0)
推荐(0)
2014年6月4日
开机自启动程序 注册表
摘要: 1 #include "iostream" 2 #include "afx.h" 3 #include "atlbase.h" 4 #include "cstring" 5 using namespace std; 6 7 void main(){ 8 FreeConsole(); 9 ...
阅读全文
posted @ 2014-06-04 10:32 森语音
阅读(230)
评论(0)
推荐(0)
2014年5月30日
windows系统调用 线程创建
摘要: 1 #include "windows.h" 2 #include "iostream" 3 using namespace std; 4 5 class CWorkerThread{ 6 public: 7 CWorkerThread(LPCTSTR szName): 8 ...
阅读全文
posted @ 2014-05-30 10:16 森语音
阅读(387)
评论(0)
推荐(0)
2014年5月17日
windows系统调用 进程终止
摘要: 1 #include "windows.h" 2 #include "iostream" 3 #include "stdio.h" 4 using namespace std; 5 6 static LPCTSTR q_szMutexName="w2kdg.ProcTerm.mutex.Suic...
阅读全文
posted @ 2014-05-17 06:52 森语音
阅读(429)
评论(0)
推荐(0)
2014年5月16日
windows系统调用 进程快照
摘要: 1 #include "windows.h" 2 #include "tlhelp32.h" 3 #include "iostream" 4 using namespace std; 5 6 #pragma comment(lib,"kernel32.lib") 7 8 DWORD GetKe...
阅读全文
posted @ 2014-05-16 17:27 森语音
阅读(500)
评论(0)
推荐(0)
线性表基本维护[ACM]
摘要: 1 #include "iostream" 2 #include "string" 3 using namespace std; 4 5 typedef struct node{ 6 string data; 7 struct node *next; 8 node(str...
阅读全文
posted @ 2014-05-16 09:06 森语音
阅读(175)
评论(0)
推荐(0)
2014年5月12日
获取操作系统版本号
摘要: 1 #include "windows.h" 2 #include "iostream" 3 4 void main(){ 5 DWORD dwIdThis=GetCurrentProcessId(); 6 7 DWORD dwVerReq=GetProcessVersion(...
阅读全文
posted @ 2014-05-12 18:56 森语音
阅读(382)
评论(0)
推荐(0)
2014年5月9日
获得进程句柄
摘要: 1 #include "windows.h" 2 #include "iostream" 3 4 void main(){ 5 HANDLE hprocessThis=GetCurrentProcess(); 6 7 DWORD dwPriority=GetPriorityCl...
阅读全文
posted @ 2014-05-09 07:55 森语音
阅读(231)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
下一页