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

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

warning C4996 - c++1y / stl - 清泛IT社区,为创新赋能!

...s declared deprecated出现这样的警告,是因为VC2005之后的版本认为CRT的一组函数如果使用不当,可能会产生诸如内存泄露、缓冲区溢出、非法访问等安全问题。这些函数如:strcpy、strcat等。对于这些问题,VC2005建议使用这些函数...
https://bbs.tsingfun.com/thread-11-1-1.html 

CreateWindow()动态创建一个EditBox - C/C++ - 清泛IT论坛,有思想、有深度

...帖最后由 zqp2013 于 2015-1-4 16:21 编辑 在Win32代码或MFC代码动态创建一个EditBox: 在OnInitDialog()函数:         // 创建EditBox         HWND m_wndEdit = CreateWindow(_T("EDIT"), 0, WS_CHILD...
https://www.tsingfun.com/it/os... 

Linux上安装dtrace(劝退篇) - 操作系统(内核) - 清泛网 - 专注IT技能提升

...哥的nginx教程, 决定使用dtrace来进行诊断. 在agentzh的教程, 利用了dtrace来查看access使用lua的性能状况. 因为之前也有了解过其它的性能检测工具. 褚霸大哥的博客上多次提到了systemtap工具. 这两个工具有相似之处, 大家可以猛击...
https://www.tsingfun.com/it/cp... 

VS编译dll时报编译错误:fatal error LNK1561: entry point must be define...

...fatal error LNK1561: entry point must be defined1、可能是连接命令的 subsystem不正确,在Project Properties->Linker->System设置,改为 VS编译dll时报编译错误:fatal error LNK1561: entry point must be defined 1、可能是连接命令的/subsystem不正确,在Pr...
https://www.tsingfun.com/it/cp... 

Undefined reference to symbol X509_free - C/C++ - 清泛网 - 专注C/C++及内核技术

...fined reference to symbol X509_free 编译错误的解决方法:链接库增加 -lcrypto,而非 -lcrypt参考:https: stackoverflow com questions 33215936 undefined-reference-to-symbol-x509-freeUndefined reference to symbol X509_free 编译错误的解决方法:链接库增加 -lcrypto...
https://www.tsingfun.com/it/os... 

Linux上安装dtrace(劝退篇) - 操作系统(内核) - 清泛网 - 专注IT技能提升

...哥的nginx教程, 决定使用dtrace来进行诊断. 在agentzh的教程, 利用了dtrace来查看access使用lua的性能状况. 因为之前也有了解过其它的性能检测工具. 褚霸大哥的博客上多次提到了systemtap工具. 这两个工具有相似之处, 大家可以猛击...
https://www.tsingfun.com/it/pr... 

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

Jenkins集成gtest单元测试结果Jenkins-gtestgtest单元测试结果默认输出到控制台,那么我们如何把它集成到Jenkins系统呢?1、让gtest运行结果输出到XML文件:mygtest --gtest_output=xml:result xml2、配置Jenkins构建后操 gtest单元测试结果默认...
https://www.tsingfun.com/it/tech/2539.html 

qrcodejs:根据URL地址生成二维码 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...地址:http: davidshimjs github io qrcodejs 用起来很简单,页面引入两个js:<script type="text javascript" src="https: www tsingfun com statics js jquer qrcodejs下载地址:http://davidshimjs.github.io/qrcodejs/ 用起来很简单,页面引入两个js: <script type...
https://www.tsingfun.com/it/os_kernel/2538.html 

Can\'t locate Switch.pm in @INC 的解决方法 - 操作系统(内核) - 清泛网 -...

Can't locate Switch.pm in @INC 的解决方法在Perl脚本使用switch语法,执行时报错Can& 39;t locate Switch pm in @INC ,原因是Perl默认没有安装Switch模块,需要自行安装。安装方法:1、通过包管理器安装:sudo ap 在Perl脚本使用switch语法,执...
https://www.tsingfun.com/it/tech/2536.html 

jQuery offset位置不准的解决方法:使用positon - 更多技术 - 清泛网 - 专...

...position()函数:$(obj) position() top;offset(): 获取元素在文档的位置。position(): 获取相对(父元素) 如果发现jQuery对象的offset位置与预想不一致的情况下,可以尝试使用position()函数: $(obj).position().top; offset(): 获取元素在文档...