大约有 9,000 项符合查询结果(耗时:0.0087秒) [XML]

https://bbs.tsingfun.com/thread-816-1-1.html 

c++读注册表 - c++1y / stl - 清泛IT社区,为创新赋能!

...sp;       path = szBuffer;  //处理读出来值                 RegCloseKey(hKey);          } }复制代码
https://bbs.tsingfun.com/thread-770-1-1.html 

const char *, char const *, char * const 异同?const修饰符各位置有何区...

const char * p = new char('a'); 这个是常字符,即p内容不能被修改。 char const * p 意义同上,没有区别。 这时,*p = 'c'; 会报错。 char * const p = new char('a'); 这个是常指针,即p指针本身不可被修改。 这时,p = new char; 会报...
https://bbs.tsingfun.com/thread-23-1-1.html 

MFC窗口如何设置TopMost置顶 - VC/MFC - 清泛IT论坛,有思想、有深度

...帖最后由 zqp2013 于 2015-1-13 20:03 编辑 方法一:网上常见 pDlg->SetWindowPos(&CWnd::wndTopMost, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);  或 pDlg->SetWindowPos(pDlg->GetStyle() & WS_EX_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE); 方法二:修...
https://bbs.tsingfun.com/thread-12-1-1.html 

Linux常用命令(持续更新...) - 脚本技术 - 清泛IT论坛,有思想、有深度

... -h --max-depth=1 查找文件(例如/usr目录下查找含'apache'目录和文件): find /usr -name apache find /usr -name apache -type f    (只找文件) find /usr -name apache -type d   (只找目录) 查看进程: netstat -ntpl 解压: tar -zxvf...
https://bbs.tsingfun.com/thread-1056-1-1.html 

【未发布】【第七课】问答类App开发 - App Inventor 2 中文网 - 清泛IT社区...

课程目: 熟悉csv等文本处理方式,熟悉网络组件。熟悉json数据格式(互联网通用格式),本地及云数据存储。 难度系数:3星
https://www.tsingfun.com/it/cp... 

MFC Telnet Application(mfc telnet 端口,代码实现、不调用telnet.exe) ...

...调用telnet.exe。程序源码工程升级后,可能出现编译不过情况,请将stdafx.h中0x0410全部改为0x0501即可。The article demonstrates an MFC GUI Telnet application with server capabilities for incoming connections support. Download demo - 29.9 KB Download source - 42....
https://www.tsingfun.com/it/cp... 

MFC Telnet Application(mfc telnet 端口,代码实现、不调用telnet.exe) ...

...调用telnet.exe。程序源码工程升级后,可能出现编译不过情况,请将stdafx.h中0x0410全部改为0x0501即可。The article demonstrates an MFC GUI Telnet application with server capabilities for incoming connections support. Download demo - 29.9 KB Download source - 42....
https://www.tsingfun.com/it/cp... 

MFC Telnet Application(mfc telnet 端口,代码实现、不调用telnet.exe) ...

...调用telnet.exe。程序源码工程升级后,可能出现编译不过情况,请将stdafx.h中0x0410全部改为0x0501即可。The article demonstrates an MFC GUI Telnet application with server capabilities for incoming connections support. Download demo - 29.9 KB Download source - 42....
https://www.tsingfun.com/it/tech/2574.html 

解决python3报错:TypeError: a bytes-like object is required, not \'str...

...thon3和Python2在套接字返回值解码上有区别,也就是说报错这段代码在python2上可以正常使用。解决思路:python bytes和str两种类型可以通过函数encode()和decode() 问题原因: python3和Python2在套接字返回值解码上有区别,也就是说报...
https://www.tsingfun.com/it/pr... 

Jenkins中集成gtest单元测试结果 - 项目管理 - 清泛网 - 专注IT技能提升

... 2、配置Jenkins构建后操作选项: Jenkins会自动集成每次运行结果,并绘制可视化图表。 参考:https://stackoverflow.com/questions/11540633/using-gtest-in-jenkins Jenkins gtest