﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>C++博客-面对现实，超越自己-最新评论</title><link>http://www.cppblog.com/wanghaiguang/CommentsRSS.aspx</link><description>逆水行舟，不进则退</description><language>zh-cn</language><pubDate>Thu, 18 Aug 2016 03:21:46 GMT</pubDate><lastBuildDate>Thu, 18 Aug 2016 03:21:46 GMT</lastBuildDate><generator>cnblogs</generator><item><title>re: C++ Deque(双向队列) </title><link>http://www.cppblog.com/wanghaiguang/archive/2016/08/11/177477.html#214139</link><dc:creator>cxv</dc:creator><author>cxv</author><pubDate>Thu, 11 Aug 2016 05:42:00 GMT</pubDate><guid>http://www.cppblog.com/wanghaiguang/archive/2016/08/11/177477.html#214139</guid><description><![CDATA[xcvx<img src ="http://www.cppblog.com/wanghaiguang/aggbug/214139.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/wanghaiguang/" target="_blank">cxv</a> 2016-08-11 13:42 <a href="http://www.cppblog.com/wanghaiguang/archive/2016/08/11/177477.html#214139#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 查找CString里面出现某个字符的次数 </title><link>http://www.cppblog.com/wanghaiguang/archive/2016/07/25/197935.html#214036</link><dc:creator>过客</dc:creator><author>过客</author><pubDate>Mon, 25 Jul 2016 02:37:00 GMT</pubDate><guid>http://www.cppblog.com/wanghaiguang/archive/2016/07/25/197935.html#214036</guid><description><![CDATA[@JJ<br>你注意看人家博主用的是哪个版本的重载函数，不是字符，是字符串。<img src ="http://www.cppblog.com/wanghaiguang/aggbug/214036.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/wanghaiguang/" target="_blank">过客</a> 2016-07-25 10:37 <a href="http://www.cppblog.com/wanghaiguang/archive/2016/07/25/197935.html#214036#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: MFC COMBOX控件只接受数字和设置数字范围</title><link>http://www.cppblog.com/wanghaiguang/archive/2016/07/08/203432.html#213890</link><dc:creator>zju_cfb</dc:creator><author>zju_cfb</author><pubDate>Fri, 08 Jul 2016 08:50:00 GMT</pubDate><guid>http://www.cppblog.com/wanghaiguang/archive/2016/07/08/203432.html#213890</guid><description><![CDATA[ch是wchar_t类型，也就是unsigned short，为两个字节，而isdigit函数接受的是char类型，为一个字节，中间会有wchar_t转char的一个过程，导致把“头”这个汉字误判为一个数字（数字的ASCII码为48~57）。<br>把代码中的 if(!isdigit(ch))  改为 if(!(ch&gt;=48 &amp;&amp; ch&lt;=57)) 就不会出现“头”这个汉字了。<img src ="http://www.cppblog.com/wanghaiguang/aggbug/213890.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/wanghaiguang/" target="_blank">zju_cfb</a> 2016-07-08 16:50 <a href="http://www.cppblog.com/wanghaiguang/archive/2016/07/08/203432.html#213890#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: C++ 解析Json——jsoncpp</title><link>http://www.cppblog.com/wanghaiguang/archive/2016/06/23/205020.html#213790</link><dc:creator>huben</dc:creator><author>huben</author><pubDate>Thu, 23 Jun 2016 09:02:00 GMT</pubDate><guid>http://www.cppblog.com/wanghaiguang/archive/2016/06/23/205020.html#213790</guid><description><![CDATA[我喜欢博主的这句话，面对现实，超越自己<img src ="http://www.cppblog.com/wanghaiguang/aggbug/213790.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/wanghaiguang/" target="_blank">huben</a> 2016-06-23 17:02 <a href="http://www.cppblog.com/wanghaiguang/archive/2016/06/23/205020.html#213790#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: VS2008 下error PRJ0003 : Error spawning 'cmd.exe'的解决方法[未登录]</title><link>http://www.cppblog.com/wanghaiguang/archive/2016/06/13/198255.html#213698</link><dc:creator>fly</dc:creator><author>fly</author><pubDate>Mon, 13 Jun 2016 09:13:00 GMT</pubDate><guid>http://www.cppblog.com/wanghaiguang/archive/2016/06/13/198255.html#213698</guid><description><![CDATA[ 64位系统需要在上面的“PlatForm”列表菜单中选择“X64”，然后在下面的文件夹列表中添加作者所说的那三行代码<img src ="http://www.cppblog.com/wanghaiguang/aggbug/213698.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/wanghaiguang/" target="_blank">fly</a> 2016-06-13 17:13 <a href="http://www.cppblog.com/wanghaiguang/archive/2016/06/13/198255.html#213698#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: MFC设置对话框背景图片</title><link>http://www.cppblog.com/wanghaiguang/archive/2016/05/25/200671.html#213582</link><dc:creator>= =</dc:creator><author>= =</author><pubDate>Wed, 25 May 2016 03:28:00 GMT</pubDate><guid>http://www.cppblog.com/wanghaiguang/archive/2016/05/25/200671.html#213582</guid><description><![CDATA[博主拜托代码写的负责任一些好吗<img src ="http://www.cppblog.com/wanghaiguang/aggbug/213582.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/wanghaiguang/" target="_blank">= =</a> 2016-05-25 11:28 <a href="http://www.cppblog.com/wanghaiguang/archive/2016/05/25/200671.html#213582#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 最短路径算法—Floyd(弗洛伊德)算法分析与实现(C/C++)</title><link>http://www.cppblog.com/wanghaiguang/archive/2015/12/25/180883.html#212553</link><dc:creator>大神</dc:creator><author>大神</author><pubDate>Fri, 25 Dec 2015 03:15:00 GMT</pubDate><guid>http://www.cppblog.com/wanghaiguang/archive/2015/12/25/180883.html#212553</guid><description><![CDATA[没有error，没有warning，但是点运行后提示Cannot execute pragram。怎么回事阿<img src ="http://www.cppblog.com/wanghaiguang/aggbug/212553.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/wanghaiguang/" target="_blank">大神</a> 2015-12-25 11:15 <a href="http://www.cppblog.com/wanghaiguang/archive/2015/12/25/180883.html#212553#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: MFC检测网络连接和ping IP地址</title><link>http://www.cppblog.com/wanghaiguang/archive/2015/12/23/198157.html#212543</link><dc:creator>mfc新手</dc:creator><author>mfc新手</author><pubDate>Wed, 23 Dec 2015 08:24:00 GMT</pubDate><guid>http://www.cppblog.com/wanghaiguang/archive/2015/12/23/198157.html#212543</guid><description><![CDATA[刚好需要这个，谢谢楼主了。<img src ="http://www.cppblog.com/wanghaiguang/aggbug/212543.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/wanghaiguang/" target="_blank">mfc新手</a> 2015-12-23 16:24 <a href="http://www.cppblog.com/wanghaiguang/archive/2015/12/23/198157.html#212543#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: C++ 解析Json——jsoncpp[未登录]</title><link>http://www.cppblog.com/wanghaiguang/archive/2015/10/16/205020.html#212025</link><dc:creator>王海光</dc:creator><author>王海光</author><pubDate>Fri, 16 Oct 2015 03:34:00 GMT</pubDate><guid>http://www.cppblog.com/wanghaiguang/archive/2015/10/16/205020.html#212025</guid><description><![CDATA[@刘亮<br>数组循环解析，这样呢<br>if(!root[&quot;list&quot;].isNull())<br>{<br>    for (int nIndex = 0; nIndex &lt; root[&quot;list&quot;].size(); nIndex++)    <br>    { <br>	CString sTitleTemp     = root[&quot;list&quot;][nIndex][&quot;title&quot;].asCString();<br><br>    }<br>}<img src ="http://www.cppblog.com/wanghaiguang/aggbug/212025.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/wanghaiguang/" target="_blank">王海光</a> 2015-10-16 11:34 <a href="http://www.cppblog.com/wanghaiguang/archive/2015/10/16/205020.html#212025#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: C++ 解析Json——jsoncpp[未登录]</title><link>http://www.cppblog.com/wanghaiguang/archive/2015/10/16/205020.html#212023</link><dc:creator>刘亮</dc:creator><author>刘亮</author><pubDate>Fri, 16 Oct 2015 03:25:00 GMT</pubDate><guid>http://www.cppblog.com/wanghaiguang/archive/2015/10/16/205020.html#212023</guid><description><![CDATA[ [{<br>   &quot;html&quot; : &quot;<a target="_new" href="https://www.baidu.com/&quot;">https://www.baidu.com/&quot;</a>,<br>   &quot;pass&quot; : &quot;1207&quot;,<br>   &quot;user&quot; : &quot;被抢了&quot;<br>}<br>]  <br><br><br>文件中的内容是这样的但是始终解析不正确。。求数组解析<img src ="http://www.cppblog.com/wanghaiguang/aggbug/212023.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/wanghaiguang/" target="_blank">刘亮</a> 2015-10-16 11:25 <a href="http://www.cppblog.com/wanghaiguang/archive/2015/10/16/205020.html#212023#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>