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

https://www.tsingfun.com/it/cpp/1357.html 

C++ 读写xml方法整理(持续更新) - C/C++ - 清泛网 - 专注C/C++及内核技术

...******************* * outline.c * * Copyright 1999, Clark Cooper * All rights reserved. */ #include <stdio.h> #include <expat.h> #if defined(__amigaos__) && defined(__USE_INLINE__) #include <proto/expat.h> #endif #ifdef XML_LARGE_SIZE #if defined(XML_USE_MSC_EXTENSIONS) && _MS...
https://www.tsingfun.com/it/cpp/1902.html 

c++文件流基本用法(ifstream, ostream,fstream) - C/C++ - 清泛网 - 专注C/C++及内核技术

...write函数来读写文件。可参见: https://www.tsingfun.com/it/cpp/all_programming_language_file_read_write_summary.html#C c++ ,文件流,ifstream, ostream,fstream
https://www.tsingfun.com/it/tech/1889.html 

win10启动过程中黑屏时间长解决办法 - 更多技术 - 清泛网 - 专注C/C++及内核技术

... 3.重启电脑。 “EnableUlps” parameter is now set to zero for all AMD cards. Disabling this parameter should fix Delayed Startup/BSODS on many laptops. 原来整合包就是通过关闭ulps解决开机延迟问题。ULPS全称Ultra Low Power State,ULPS是休眠状态 ,降低非...
https://www.tsingfun.com/it/tech/1695.html 

如何设置squid使外网也可以通过代理服务器上网,并且使用代理服务器ip地...

... dns_nameservers ******** cache_effective_user squid squid http_access allow all 原来加上一条 http_reply_access allow all 就可以了。squid 代理服务器
https://www.tsingfun.com/it/cp... 

Linux C++ 单元测试与gcov代码覆盖率统计 - C/C++ - 清泛网 - 专注C/C++及内核技术

...cpp.gcov lcov --rc lcov_branch_coverage=1 -c -d . -o demo_lcov_report #all #genhtml --rc genhtml_branch_coverage=1 demo_lcov_report -o out_report #filter lcov --rc lcov_branch_coverage=1 -r demo_lcov_report '/usr/include/*' '*lib/*' -o filtered_coverage genhtml --rc genhtml_branch_coverage=1...
https://www.tsingfun.com/it/cpp/1348.html 

NSIS学习笔记(持续更新) - C/C++ - 清泛网 - 专注C/C++及内核技术

...code\Plugins" echo off Q 桌面快捷方式,示例 在section "install"中添加下面代码,新建shortcut CreateShortcut "$DESKTOP\${APPNAME}.lnk" "$INSTDIR\${APPEXENAME}" 在section "uninstall"中添加下面代码,删除shortcut delete "$DESKTOP\${APPNAME}.lnk" Q 关...
https://www.tsingfun.com/it/cpp/951.html 

ATL COM开发入门(一)(JS调用ActiveX/COM组件) - C/C++ - 清泛网 - 专注C/C++及内核技术

...g retStr; retStr.Format(_T("%s%s"), *pStr1, *pStr2); *pRetStr = retStr.AllocSysString(); return S_OK; } 四、写一个简单html网页进行测试: <HTML> <HEAD> <TITLE>COM接口测试页</TITLE> <script type="text/javascript"> function Test(){ var retStr = AtlDemoObj.Conc...
https://bbs.tsingfun.com/thread-616-1-1.html 

如何获取IE (控件)所有链接(包括Frameset, iframe) - 其他 - 清泛IT社...

来源:新浪博客 IE 顶层 body 节点通过IHTMLElement-&gt;get_all 方法无法获取iframe 里面节点列表: CComPtr&lt;IHTMLElement&gt; body; ... CComPtr&lt;IDispatch&gt; spDispCollection; body-&gt;get_all(&amp;spDispCollection);复制代码所以要获取iframe/frame(frameset) ...
https://www.tsingfun.com/it/os... 

动态追踪(Dynamic Tracing)技术漫谈 - 操作系统(内核) - 清泛网 - 专注C/C++及内核技术

...amic Tracing)技术漫谈dynamic-tracing什么是动态追踪动态追踪优点DTrace 与 SystemTapSystemTap 在生产上应用火焰图方法论知识就是力量开源与调试符号Linux 内核支持硬件追踪死亡进程遗骸分析传统调试技 什么是动态追踪 ...
https://www.tsingfun.com/it/tech/1215.html 

构建高并发高可用电商平台架构实践 - 更多技术 - 清泛网 - 专注C/C++及内核技术

构建高并发高可用电商平台架构实践一、 设计理念1. 空间换时间1) 多级缓存,静态化客户端页面缓存(http header中包含Expires Cache of Control,last modified(304,...一、 设计理念 1. 空间换时间 1) 多级缓存,静态化 客户端页面缓...