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

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

一款IP:端口监控工具 服务器端口监控工具[附源码] - C++ UI - 清泛IT社区...

...可手动刷新。 支持连接异常报警(PC蜂鸣器、自定义wav文件)。 软件载:http://www.tsingfun.com/html/2016/soft_0602/74.html 源码载: 主要代码请参考:《mfc telnet 端口,代码实现、不调用telnet.exe》 表格采用GridCtrl(Demo...
https://bbs.tsingfun.com/thread-566-1-1.html 

ThreadXxx.cc:100: error: ‘::pthread_kill’ has not been declared - c+...

#include <pthread.h> #include <signal.h> 除了pthread.h外,还要引入signal.h头文件才行,解决。
https://bbs.tsingfun.com/thread-567-1-1.html 

ThreadXxx.h:100: error: ‘pthread_t’ was not declared in this scope -...

pthread_t在头文件/usr/include/bits/pthreadtypes.h中定义:typedef unsigned long int pthread_t;复制代码它是一个线程的标识符。 #include <pthread.h>   解决。
https://bbs.tsingfun.com/thread-426-1-1.html 

卸载SQL Server2000后不能再次安装的问题解决方法 - 爬虫/数据库 - 清泛IT...

...安装哪一个版本,永远都是同样的错误提示,说是有一个文件已经挂起,必须重新启动计算机。那okay啦,重新启动,再次安装,但是仍然是同样的问题。即使进入安全模式也没有用!后来得知是注册表键值的问题,只要删除HKEY_...
https://bbs.tsingfun.com/thread-781-1-1.html 

SHFileOperation 这个API函数怎么用起来结果飘忽不定? - c++1y / stl - 清...

...失败。 解决: 改用C++的FindNextFile,支持 * 通配符查找文件,核心代码如: WIN32_FIND_DATA FindFileData; char szCurPath[MAX_PATH + 1] = { 0 }; GetCurrentDirectory(MAX_PATH, szCurPath); CString findFileName; findFileName.Format("%stest*.txt", szCurPath); HAND...
https://bbs.tsingfun.com/thread-858-1-1.html 

error LNK2019: 无法解析的外部符号 _Netbios@4,该符号在函数 中被引用 - c...

解决方法如:Cpp文件include语句之后加上如代码:#pragma comment(lib,"netapi32.lib")
https://bbs.tsingfun.com/thread-857-1-1.html 

error LNK2019: 无法解析的外部符号_socket,该符号在函数 中被引用 - c++1...

...最新 0 个,跳过 0 个 ========== 解决方法如:在CPP文件include语句之后加上如代码:#pragma comment(lib,"ws2_32.lib")
https://www.tsingfun.com/it/os... 

Linux非root用户运行程序的一些注意事项 - 操作系统(内核) - 清泛网 - 专注...

...024 以端口的程序。 2、Linux非root程序默认创建出来的文件权限是666,想要修改默认值,使用: #include <sys/stat.h> umask(026); //去掉组写权限及其他用户所有权限 End. linux root 端口 umask
https://www.tsingfun.com/it/cp... 

编译错误 error: ISO C++ forbids declaration of ‘xxx’ with no type [-...

...t(int value) {} //加上返回类型解决 可能的情况2:两个头文件相互include,一般可以采用#ifndef或前置声明解决该问题。 可能的情况3: error: ISO C++ forbids declaration of &lsquo;typeof&rsquo; with no type [-fpermissive] typeof关键字是GNU C拓展,...
https://www.tsingfun.com/it/te... 

php出现 Notice: Undefined index: xxx 的解决方法 - 更多技术 - 清泛网移...

... 另外,还有其他几种解决方法供参考: 1、 修改 php.ini 文件中 error_reporting = E_ALL 为 error_reporting = E_ALL & ~E_NOTICE # 除去Notice警告 2、使用代码 ini_set( 'error_reporting', E_ALL ^ E_NOTICE ); ini_set( 'display_errors', '0' ); 3、使用@抑制...