锘??xml version="1.0" encoding="utf-8" standalone="yes"?>久久久久久无码Av成人影院 ,国产精品久久新婚兰兰,亚洲国产精品成人久久蜜臀 http://www.shnenglu.com/alantop/category/1645.htmlzh-cnFri, 07 Sep 2018 10:33:07 GMTFri, 07 Sep 2018 10:33:07 GMT60define _WINSOCK_DEPRECATED_NO_WARNINGS to disable deprecated API warnings鐨勮В鍐蟲柟妗?/title><link>http://www.shnenglu.com/alantop/archive/2018/09/07/215911.html</link><dc:creator>AlanTop</dc:creator><author>AlanTop</author><pubDate>Fri, 07 Sep 2018 06:18:00 GMT</pubDate><guid>http://www.shnenglu.com/alantop/archive/2018/09/07/215911.html</guid><wfw:comment>http://www.shnenglu.com/alantop/comments/215911.html</wfw:comment><comments>http://www.shnenglu.com/alantop/archive/2018/09/07/215911.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.shnenglu.com/alantop/comments/commentRss/215911.html</wfw:commentRss><trackback:ping>http://www.shnenglu.com/alantop/services/trackbacks/215911.html</trackback:ping><description><![CDATA[<div>鍑虹幇榪欎釜鎻愮ずdefine _WINSOCK_DEPRECATED_NO_WARNINGS to disable deprecated API warnings錛屽涓嬪鐞嗗嵆鍙?/div><div></div><div></div><div>#define _WINSOCK_DEPRECATED_NO_WARNINGS 1</div><div>榪欎釜瀹氫箟鍦╯tdafx.h鐨勭涓琛?/div><div></div><img src ="http://www.shnenglu.com/alantop/aggbug/215911.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.shnenglu.com/alantop/" target="_blank">AlanTop</a> 2018-09-07 14:18 <a href="http://www.shnenglu.com/alantop/archive/2018/09/07/215911.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item><item><title>undefined reference to `std::ios_base::Init::Init()'閿欒鐨勮В鍐蟲柟妗?/title><link>http://www.shnenglu.com/alantop/archive/2018/08/18/215855.html</link><dc:creator>AlanTop</dc:creator><author>AlanTop</author><pubDate>Fri, 17 Aug 2018 22:33:00 GMT</pubDate><guid>http://www.shnenglu.com/alantop/archive/2018/08/18/215855.html</guid><wfw:comment>http://www.shnenglu.com/alantop/comments/215855.html</wfw:comment><comments>http://www.shnenglu.com/alantop/archive/2018/08/18/215855.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.shnenglu.com/alantop/comments/commentRss/215855.html</wfw:commentRss><trackback:ping>http://www.shnenglu.com/alantop/services/trackbacks/215855.html</trackback:ping><description><![CDATA[     鎽樿:   <a href='http://www.shnenglu.com/alantop/archive/2018/08/18/215855.html'>闃呰鍏ㄦ枃</a><img src ="http://www.shnenglu.com/alantop/aggbug/215855.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.shnenglu.com/alantop/" target="_blank">AlanTop</a> 2018-08-18 06:33 <a href="http://www.shnenglu.com/alantop/archive/2018/08/18/215855.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item><item><title>c++ string 鍜?char * 涔嬮棿浜掔浉杞崲http://www.shnenglu.com/alantop/archive/2016/08/28/214238.htmlAlanTopAlanTopSun, 28 Aug 2016 04:26:00 GMThttp://www.shnenglu.com/alantop/archive/2016/08/28/214238.htmlhttp://www.shnenglu.com/alantop/comments/214238.htmlhttp://www.shnenglu.com/alantop/archive/2016/08/28/214238.html#Feedback0http://www.shnenglu.com/alantop/comments/commentRss/214238.htmlhttp://www.shnenglu.com/alantop/services/trackbacks/214238.htmlstring s1("demo1");
string s1 = "demo";
char *p = "demo";
s1 = p;

string杞琧har*鏈変笁縐嶆柟寮忥細c_str(),data(),copy()
c_str()榪斿洖涓涓猚椋庢牸鐨勫瓧絎︽暟緇勶紝甯︽湁'\0'緇撴潫
data錛堬級榪斿洖涓涓暟緇勶紝涓嶈嚜鍔ㄥ鍔?#8216;\0’
copy()鎷瘋礉涓鍧楀瓧絎﹀埌鏂扮殑鍐呭瓨錛岄渶瑕佹柊鍒嗛厤涓鍧楀唴瀛樼敤浜庡瓨鏀俱?br />鍓嶄袱涓嚱鏁幫紝鍘熸湁鍐呭鍙戠敓鍙樺寲錛屽湴鍧鎸囩殑鍐呭涔熶細鍙樺寲錛屼嬌鐢╟opy涓嶄細鍙戠敓榪欑闂銆傦紙瑙佷緥瀛?錛?br />
const char *p = s.data();
const char * p = s.c_str();

char *p = new char[s.length() + 1];
s.copy(p, string::npos);
p[s.length()] = 0;
鐢ㄥソ錛岄噴鏀?p

渚嬪瓙3錛?br />
std::string s1 = "demo 123456\n \0";
const char *p1 = s1.c_str();
const char *p2 = s1.data();
s1 = "345";

s1 鍐呭鍙戠敓鍙樺寲鍚庯紝p1鍜宲2鎸囬拡鍐呭鐨勫湴鍧涔熷彂鐢熷彉鍖栥?/div>





AlanTop 2016-08-28 12:26 鍙戣〃璇勮
]]>D璇█鎺掑悕鎸佺畫鍗囦笂鍗?/title><link>http://www.shnenglu.com/alantop/archive/2014/01/04/205163.html</link><dc:creator>AlanTop</dc:creator><author>AlanTop</author><pubDate>Sat, 04 Jan 2014 04:46:00 GMT</pubDate><guid>http://www.shnenglu.com/alantop/archive/2014/01/04/205163.html</guid><wfw:comment>http://www.shnenglu.com/alantop/comments/205163.html</wfw:comment><comments>http://www.shnenglu.com/alantop/archive/2014/01/04/205163.html#Feedback</comments><slash:comments>2</slash:comments><wfw:commentRss>http://www.shnenglu.com/alantop/comments/commentRss/205163.html</wfw:commentRss><trackback:ping>http://www.shnenglu.com/alantop/services/trackbacks/205163.html</trackback:ping><description><![CDATA[     鎽樿: 2014騫?鏈堬紝D璇█鍦═IOBE緙栫▼璇█鎺掑悕鎸佺畫鍗囬珮錛屼綅鍒?8鍚嶃?nbsp; <a href='http://www.shnenglu.com/alantop/archive/2014/01/04/205163.html'>闃呰鍏ㄦ枃</a><img src ="http://www.shnenglu.com/alantop/aggbug/205163.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.shnenglu.com/alantop/" target="_blank">AlanTop</a> 2014-01-04 12:46 <a href="http://www.shnenglu.com/alantop/archive/2014/01/04/205163.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item><item><title>vs 2010 濡備綍鐢╞oost璁$畻鏂囦歡鐨刢rc鍊?/title><link>http://www.shnenglu.com/alantop/archive/2013/02/13/197811.html</link><dc:creator>AlanTop</dc:creator><author>AlanTop</author><pubDate>Tue, 12 Feb 2013 19:32:00 GMT</pubDate><guid>http://www.shnenglu.com/alantop/archive/2013/02/13/197811.html</guid><wfw:comment>http://www.shnenglu.com/alantop/comments/197811.html</wfw:comment><comments>http://www.shnenglu.com/alantop/archive/2013/02/13/197811.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.shnenglu.com/alantop/comments/commentRss/197811.html</wfw:commentRss><trackback:ping>http://www.shnenglu.com/alantop/services/trackbacks/197811.html</trackback:ping><description><![CDATA[     鎽樿: vs 2010 濡備綍鐢╞oost璁$畻鏂囦歡鐨刢rc鍊?nbsp; <a href='http://www.shnenglu.com/alantop/archive/2013/02/13/197811.html'>闃呰鍏ㄦ枃</a><img src ="http://www.shnenglu.com/alantop/aggbug/197811.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.shnenglu.com/alantop/" target="_blank">AlanTop</a> 2013-02-13 03:32 <a href="http://www.shnenglu.com/alantop/archive/2013/02/13/197811.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item><item><title>濡備綍璋冭瘯宕╂簝紼嬪簭錛堜竴錛?鏇存敼璋冭瘯鍣紝杞瓨鏂囦歡http://www.shnenglu.com/alantop/archive/2009/11/08/100415.htmlAlanTopAlanTopSun, 08 Nov 2009 13:11:00 GMThttp://www.shnenglu.com/alantop/archive/2009/11/08/100415.htmlhttp://www.shnenglu.com/alantop/comments/100415.htmlhttp://www.shnenglu.com/alantop/archive/2009/11/08/100415.html#Feedback2http://www.shnenglu.com/alantop/comments/commentRss/100415.htmlhttp://www.shnenglu.com/alantop/services/trackbacks/100415.html闃呰鍏ㄦ枃

AlanTop 2009-11-08 21:11 鍙戣〃璇勮
]]>
VS2008涓柊澧炴帶浠秙yslink鐨勪嬌鐢ㄦ柟娉曪紙浠ュ悗浣跨敤瓚呴摼鎺ョ畝鍗曞浜嗭級http://www.shnenglu.com/alantop/archive/2009/11/08/100410.htmlAlanTopAlanTopSun, 08 Nov 2009 12:37:00 GMThttp://www.shnenglu.com/alantop/archive/2009/11/08/100410.htmlhttp://www.shnenglu.com/alantop/comments/100410.htmlhttp://www.shnenglu.com/alantop/archive/2009/11/08/100410.html#Feedback2http://www.shnenglu.com/alantop/comments/commentRss/100410.htmlhttp://www.shnenglu.com/alantop/services/trackbacks/100410.html闃呰鍏ㄦ枃

AlanTop 2009-11-08 20:37 鍙戣〃璇勮
]]>
string鍜宮emsethttp://www.shnenglu.com/alantop/archive/2008/09/23/62633.htmlAlanTopAlanTopTue, 23 Sep 2008 14:10:00 GMThttp://www.shnenglu.com/alantop/archive/2008/09/23/62633.htmlhttp://www.shnenglu.com/alantop/comments/62633.htmlhttp://www.shnenglu.com/alantop/archive/2008/09/23/62633.html#Feedback7http://www.shnenglu.com/alantop/comments/commentRss/62633.htmlhttp://www.shnenglu.com/alantop/services/trackbacks/62633.html
string澶у閮藉湪鐢紝string鍙互鐢╩emset鍚楋紵  闃呰鍏ㄦ枃

AlanTop 2008-09-23 22:10 鍙戣〃璇勮
]]>
vs 2005 sp1 瀹夎澶辮觸鐨勮В鍐蟲柟妗?瀹夎VS2005 sp1鐨勬柟娉?/title><link>http://www.shnenglu.com/alantop/archive/2008/05/21/50629.html</link><dc:creator>AlanTop</dc:creator><author>AlanTop</author><pubDate>Wed, 21 May 2008 04:42:00 GMT</pubDate><guid>http://www.shnenglu.com/alantop/archive/2008/05/21/50629.html</guid><wfw:comment>http://www.shnenglu.com/alantop/comments/50629.html</wfw:comment><comments>http://www.shnenglu.com/alantop/archive/2008/05/21/50629.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.shnenglu.com/alantop/comments/commentRss/50629.html</wfw:commentRss><trackback:ping>http://www.shnenglu.com/alantop/services/trackbacks/50629.html</trackback:ping><description><![CDATA[     鎽樿: vs 2005 sp1 瀹夎澶辮觸鐨勮В鍐蟲柟妗?瀹夎VS2005 sp1鐨勬柟娉?nbsp; <a href='http://www.shnenglu.com/alantop/archive/2008/05/21/50629.html'>闃呰鍏ㄦ枃</a><img src ="http://www.shnenglu.com/alantop/aggbug/50629.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.shnenglu.com/alantop/" target="_blank">AlanTop</a> 2008-05-21 12:42 <a href="http://www.shnenglu.com/alantop/archive/2008/05/21/50629.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item><item><title>鐢ㄤ簡10騫磛c6錛屽眳鐒跺嚭浜嗚繖鏍蜂釜鎬簨錛宒ebug宸ュ叿鏉′笉瑙佷簡錛屽ぇ瀹跺弬鐪嬭棰?/title><link>http://www.shnenglu.com/alantop/archive/2008/05/16/50049.html</link><dc:creator>AlanTop</dc:creator><author>AlanTop</author><pubDate>Fri, 16 May 2008 07:55:00 GMT</pubDate><guid>http://www.shnenglu.com/alantop/archive/2008/05/16/50049.html</guid><wfw:comment>http://www.shnenglu.com/alantop/comments/50049.html</wfw:comment><comments>http://www.shnenglu.com/alantop/archive/2008/05/16/50049.html#Feedback</comments><slash:comments>7</slash:comments><wfw:commentRss>http://www.shnenglu.com/alantop/comments/commentRss/50049.html</wfw:commentRss><trackback:ping>http://www.shnenglu.com/alantop/services/trackbacks/50049.html</trackback:ping><description><![CDATA[     鎽樿: 鐢ㄤ簡10騫磛c6錛屽眳鐒跺嚭浜嗚繖鏍蜂釜鎬簨錛宒ebug宸ュ叿鏉′笉瑙佷簡錛屽ぇ瀹跺弬鐪嬭棰?nbsp; <a href='http://www.shnenglu.com/alantop/archive/2008/05/16/50049.html'>闃呰鍏ㄦ枃</a><img src ="http://www.shnenglu.com/alantop/aggbug/50049.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.shnenglu.com/alantop/" target="_blank">AlanTop</a> 2008-05-16 15:55 <a href="http://www.shnenglu.com/alantop/archive/2008/05/16/50049.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item><item><title>m_hWnd鏄疌Wnd鐨勪竴涓垚鍛?/title><link>http://www.shnenglu.com/alantop/archive/2008/05/15/49992.html</link><dc:creator>AlanTop</dc:creator><author>AlanTop</author><pubDate>Thu, 15 May 2008 14:29:00 GMT</pubDate><guid>http://www.shnenglu.com/alantop/archive/2008/05/15/49992.html</guid><wfw:comment>http://www.shnenglu.com/alantop/comments/49992.html</wfw:comment><comments>http://www.shnenglu.com/alantop/archive/2008/05/15/49992.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.shnenglu.com/alantop/comments/commentRss/49992.html</wfw:commentRss><trackback:ping>http://www.shnenglu.com/alantop/services/trackbacks/49992.html</trackback:ping><description><![CDATA[     鎽樿: m_hWnd鏄疌Wnd鐨勪竴涓垚鍛?nbsp; <a href='http://www.shnenglu.com/alantop/archive/2008/05/15/49992.html'>闃呰鍏ㄦ枃</a><img src ="http://www.shnenglu.com/alantop/aggbug/49992.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.shnenglu.com/alantop/" target="_blank">AlanTop</a> 2008-05-15 22:29 <a href="http://www.shnenglu.com/alantop/archive/2008/05/15/49992.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item><item><title>鑲$エ鏁版嵁瑙f瀽閫氱敤宸ュ叿http://www.shnenglu.com/alantop/archive/2008/05/15/49991.htmlAlanTopAlanTopThu, 15 May 2008 13:54:00 GMThttp://www.shnenglu.com/alantop/archive/2008/05/15/49991.htmlhttp://www.shnenglu.com/alantop/comments/49991.htmlhttp://www.shnenglu.com/alantop/archive/2008/05/15/49991.html#Feedback0http://www.shnenglu.com/alantop/comments/commentRss/49991.htmlhttp://www.shnenglu.com/alantop/services/trackbacks/49991.html闃呰鍏ㄦ枃

AlanTop 2008-05-15 21:54 鍙戣〃璇勮
]]>
濡備綍灝?6榪涘埗瀛楃涓茶漿鎹㈡垚鏁村瀷錛?/title><link>http://www.shnenglu.com/alantop/archive/2008/05/15/49989.html</link><dc:creator>AlanTop</dc:creator><author>AlanTop</author><pubDate>Thu, 15 May 2008 13:37:00 GMT</pubDate><guid>http://www.shnenglu.com/alantop/archive/2008/05/15/49989.html</guid><wfw:comment>http://www.shnenglu.com/alantop/comments/49989.html</wfw:comment><comments>http://www.shnenglu.com/alantop/archive/2008/05/15/49989.html#Feedback</comments><slash:comments>2</slash:comments><wfw:commentRss>http://www.shnenglu.com/alantop/comments/commentRss/49989.html</wfw:commentRss><trackback:ping>http://www.shnenglu.com/alantop/services/trackbacks/49989.html</trackback:ping><description><![CDATA[     鎽樿: 濡備綍灝?6榪涘埗瀛楃涓茶漿鎹㈡垚鏁村瀷錛?nbsp; <a href='http://www.shnenglu.com/alantop/archive/2008/05/15/49989.html'>闃呰鍏ㄦ枃</a><img src ="http://www.shnenglu.com/alantop/aggbug/49989.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.shnenglu.com/alantop/" target="_blank">AlanTop</a> 2008-05-15 21:37 <a href="http://www.shnenglu.com/alantop/archive/2008/05/15/49989.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item><item><title>FTP寮鍙戜腑涓嬭澆鏂囦歡鐨勪袱縐嶆柟寮?/title><link>http://www.shnenglu.com/alantop/archive/2008/05/14/49775.html</link><dc:creator>AlanTop</dc:creator><author>AlanTop</author><pubDate>Tue, 13 May 2008 17:51:00 GMT</pubDate><guid>http://www.shnenglu.com/alantop/archive/2008/05/14/49775.html</guid><wfw:comment>http://www.shnenglu.com/alantop/comments/49775.html</wfw:comment><comments>http://www.shnenglu.com/alantop/archive/2008/05/14/49775.html#Feedback</comments><slash:comments>2</slash:comments><wfw:commentRss>http://www.shnenglu.com/alantop/comments/commentRss/49775.html</wfw:commentRss><trackback:ping>http://www.shnenglu.com/alantop/services/trackbacks/49775.html</trackback:ping><description><![CDATA[     鎽樿: ftp寮鍙戜腑涓嬭澆鐨勪袱縐嶆柟寮?浠ュ強紕板埌鐨勯棶棰樸?nbsp; <a href='http://www.shnenglu.com/alantop/archive/2008/05/14/49775.html'>闃呰鍏ㄦ枃</a><img src ="http://www.shnenglu.com/alantop/aggbug/49775.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.shnenglu.com/alantop/" target="_blank">AlanTop</a> 2008-05-14 01:51 <a href="http://www.shnenglu.com/alantop/archive/2008/05/14/49775.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item><item><title>鎵樼浠g爜濡備綍璋冪敤闈炴墭綆′唬鐮?c sharp濡備綍璋冪敤c++浠g爜)?http://www.shnenglu.com/alantop/archive/2008/04/16/47318.htmlAlanTopAlanTopWed, 16 Apr 2008 12:32:00 GMThttp://www.shnenglu.com/alantop/archive/2008/04/16/47318.htmlhttp://www.shnenglu.com/alantop/comments/47318.htmlhttp://www.shnenglu.com/alantop/archive/2008/04/16/47318.html#Feedback1http://www.shnenglu.com/alantop/comments/commentRss/47318.htmlhttp://www.shnenglu.com/alantop/services/trackbacks/47318.html闃呰鍏ㄦ枃

AlanTop 2008-04-16 20:32 鍙戣〃璇勮
]]>
vc ++ 濡備綍鍋氱晫闈㈠紑鍙戯紵http://www.shnenglu.com/alantop/archive/2008/04/16/47185.htmlAlanTopAlanTopTue, 15 Apr 2008 23:53:00 GMThttp://www.shnenglu.com/alantop/archive/2008/04/16/47185.htmlhttp://www.shnenglu.com/alantop/comments/47185.htmlhttp://www.shnenglu.com/alantop/archive/2008/04/16/47185.html#Feedback4http://www.shnenglu.com/alantop/comments/commentRss/47185.htmlhttp://www.shnenglu.com/alantop/services/trackbacks/47185.html闃呰鍏ㄦ枃

AlanTop 2008-04-16 07:53 鍙戣〃璇勮
]]>
寮婧愶紝璺ㄥ鉤鍙板厤璐笴++ IDE ---Code::Block http://www.shnenglu.com/alantop/archive/2008/03/01/43513.htmlAlanTopAlanTopSat, 01 Mar 2008 05:02:00 GMThttp://www.shnenglu.com/alantop/archive/2008/03/01/43513.htmlhttp://www.shnenglu.com/alantop/comments/43513.htmlhttp://www.shnenglu.com/alantop/archive/2008/03/01/43513.html#Feedback9http://www.shnenglu.com/alantop/comments/commentRss/43513.htmlhttp://www.shnenglu.com/alantop/services/trackbacks/43513.html
榪欎釜IDE鏈変綘闇瑕佺殑鎵鏈夊姛鑳斤紝騫朵笖瀹冩槸璺ㄥ鉤鍙扮殑銆?

鍙﹀錛屽叾鍏鋒湁鎻掍歡妗嗘灦錛屽緢瀹規槗鎵╁睍銆傚ぇ閲忕殑鍔熻兘鍙互閫氳繃鎻掍歡鏉ュ畨瑁呮彁渚涖?
  闃呰鍏ㄦ枃

AlanTop 2008-03-01 13:02 鍙戣〃璇勮
]]>
鍏充簬闃繪榪呴浄涓婁紶,甯︽參璁$畻鏈虹殑宸ュ叿http://www.shnenglu.com/alantop/archive/2008/02/26/43242.htmlAlanTopAlanTopTue, 26 Feb 2008 02:29:00 GMThttp://www.shnenglu.com/alantop/archive/2008/02/26/43242.htmlhttp://www.shnenglu.com/alantop/comments/43242.htmlhttp://www.shnenglu.com/alantop/archive/2008/02/26/43242.html#Feedback5http://www.shnenglu.com/alantop/comments/commentRss/43242.htmlhttp://www.shnenglu.com/alantop/services/trackbacks/43242.html闃呰鍏ㄦ枃

AlanTop 2008-02-26 10:29 鍙戣〃璇勮
]]>
Visual Studio 2008 宸茬粡閫氳繃鎵歸噺璁稿彲,闆跺敭鍜孧SDN鍙戝竷http://www.shnenglu.com/alantop/archive/2008/01/30/42193.htmlAlanTopAlanTopWed, 30 Jan 2008 03:28:00 GMThttp://www.shnenglu.com/alantop/archive/2008/01/30/42193.htmlhttp://www.shnenglu.com/alantop/comments/42193.htmlhttp://www.shnenglu.com/alantop/archive/2008/01/30/42193.html#Feedback2http://www.shnenglu.com/alantop/comments/commentRss/42193.htmlhttp://www.shnenglu.com/alantop/services/trackbacks/42193.html闃呰鍏ㄦ枃

AlanTop 2008-01-30 11:28 鍙戣〃璇勮
]]>
vc2008涓璏FC閲嶅ぇ鍙橀潻-Visual C++ 2008 Feature Pack Beta 鍙戝竷(闄勫浘)http://www.shnenglu.com/alantop/archive/2008/01/08/40677.htmlAlanTopAlanTopTue, 08 Jan 2008 01:34:00 GMThttp://www.shnenglu.com/alantop/archive/2008/01/08/40677.htmlhttp://www.shnenglu.com/alantop/comments/40677.htmlhttp://www.shnenglu.com/alantop/archive/2008/01/08/40677.html#Feedback20http://www.shnenglu.com/alantop/comments/commentRss/40677.htmlhttp://www.shnenglu.com/alantop/services/trackbacks/40677.html闃呰鍏ㄦ枃

AlanTop 2008-01-08 09:34 鍙戣〃璇勮
]]>
VS2008 Team system 姝e紡鐗堜笅杞藉拰棰勮鍥?/title><link>http://www.shnenglu.com/alantop/archive/2007/11/26/37307.html</link><dc:creator>AlanTop</dc:creator><author>AlanTop</author><pubDate>Mon, 26 Nov 2007 05:10:00 GMT</pubDate><guid>http://www.shnenglu.com/alantop/archive/2007/11/26/37307.html</guid><wfw:comment>http://www.shnenglu.com/alantop/comments/37307.html</wfw:comment><comments>http://www.shnenglu.com/alantop/archive/2007/11/26/37307.html#Feedback</comments><slash:comments>14</slash:comments><wfw:commentRss>http://www.shnenglu.com/alantop/comments/commentRss/37307.html</wfw:commentRss><trackback:ping>http://www.shnenglu.com/alantop/services/trackbacks/37307.html</trackback:ping><description><![CDATA[     鎽樿: VS2008 Team system 姝e紡鐗堜笅杞藉拰棰勮鍥?nbsp; <a href='http://www.shnenglu.com/alantop/archive/2007/11/26/37307.html'>闃呰鍏ㄦ枃</a><img src ="http://www.shnenglu.com/alantop/aggbug/37307.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.shnenglu.com/alantop/" target="_blank">AlanTop</a> 2007-11-26 13:10 <a href="http://www.shnenglu.com/alantop/archive/2007/11/26/37307.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item><item><title>澶ф櫤鎱ф柊涓浠f棩綰挎牸寮忚В鏋愶紙c++婧愮爜錛?/title><link>http://www.shnenglu.com/alantop/archive/2007/10/30/35509.html</link><dc:creator>AlanTop</dc:creator><author>AlanTop</author><pubDate>Tue, 30 Oct 2007 04:23:00 GMT</pubDate><guid>http://www.shnenglu.com/alantop/archive/2007/10/30/35509.html</guid><wfw:comment>http://www.shnenglu.com/alantop/comments/35509.html</wfw:comment><comments>http://www.shnenglu.com/alantop/archive/2007/10/30/35509.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.shnenglu.com/alantop/comments/commentRss/35509.html</wfw:commentRss><trackback:ping>http://www.shnenglu.com/alantop/services/trackbacks/35509.html</trackback:ping><description><![CDATA[     鎽樿: 澶ф櫤鎱ф柊涓浠f棩綰挎牸寮忚В鏋愶紙c++婧愮爜錛?nbsp; <a href='http://www.shnenglu.com/alantop/archive/2007/10/30/35509.html'>闃呰鍏ㄦ枃</a><img src ="http://www.shnenglu.com/alantop/aggbug/35509.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.shnenglu.com/alantop/" target="_blank">AlanTop</a> 2007-10-30 12:23 <a href="http://www.shnenglu.com/alantop/archive/2007/10/30/35509.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item><item><title>澶ф櫤鎱?閫愮瑪鏁版嵁鎻愬彇宸ュ叿http://www.shnenglu.com/alantop/archive/2007/10/26/35274.htmlAlanTopAlanTopFri, 26 Oct 2007 14:54:00 GMThttp://www.shnenglu.com/alantop/archive/2007/10/26/35274.htmlhttp://www.shnenglu.com/alantop/comments/35274.htmlhttp://www.shnenglu.com/alantop/archive/2007/10/26/35274.html#Feedback23http://www.shnenglu.com/alantop/comments/commentRss/35274.htmlhttp://www.shnenglu.com/alantop/services/trackbacks/35274.html闃呰鍏ㄦ枃

AlanTop 2007-10-26 22:54 鍙戣〃璇勮
]]>
vc涓殑xml寮鍙?/title><link>http://www.shnenglu.com/alantop/archive/2007/09/04/31546.html</link><dc:creator>AlanTop</dc:creator><author>AlanTop</author><pubDate>Tue, 04 Sep 2007 04:07:00 GMT</pubDate><guid>http://www.shnenglu.com/alantop/archive/2007/09/04/31546.html</guid><wfw:comment>http://www.shnenglu.com/alantop/comments/31546.html</wfw:comment><comments>http://www.shnenglu.com/alantop/archive/2007/09/04/31546.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.shnenglu.com/alantop/comments/commentRss/31546.html</wfw:commentRss><trackback:ping>http://www.shnenglu.com/alantop/services/trackbacks/31546.html</trackback:ping><description><![CDATA[<p><strong>1. libxml鏄竴涓法騫沖彴搴? 鍩轟簬C璇█鐨剎ml瑙f瀽鍣?</strong></p> <p>鍏朵富欏靛拰緗戜笂鍐呭寰堝,榪欓噷鏁寸悊涓涓?</p> <p>libxml婧愮爜紺轟緥:<a title="http://xmlsoft.org/examples/index.html" >http://xmlsoft.org/examples/index.html</a></p> <p>libxml鍙傝冩墜鍐?<a title="http://xmlsoft.org/html/index.html" >http://xmlsoft.org/html/index.html</a></p> <p>涓婚〉: <a title="http://xmlsoft.org/" >http://xmlsoft.org/</a></p> <p>涓涓緢璇︾粏鐨勬暀紼?<a title="http://hi.baidu.com/%CE%DA%D1%BB%C3%F7/blog/item/06df91547c79171e3a29358e.html" ><a title="http://blog.chinaunix.net/u/14063/showart_98851.html" >http://blog.chinaunix.net/u/14063/showart_98851.html</a></a></p> <p> </p> <p><strong>2. 鍒╃敤msxml4.0 sp2瑙f瀽xml</strong></p> <p><a title="http://blog.csdn.net/max2008/archive/2007/06/11/1647613.aspx" >http://blog.csdn.net/max2008/archive/2007/06/11/1647613.aspx</a></p> <p> </p> <p><strong>3.cmarkup</strong></p> <p><strong>Homepage: <a >http://www.firstobject.com/</a> </strong></p> <p><a title="http://www.cnblogs.com/bingxuefly/archive/2007/04/23/724318.html" >http://www.cnblogs.com/bingxuefly/archive/2007/04/23/724318.html</a></p><img src ="http://www.shnenglu.com/alantop/aggbug/31546.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.shnenglu.com/alantop/" target="_blank">AlanTop</a> 2007-09-04 12:07 <a href="http://www.shnenglu.com/alantop/archive/2007/09/04/31546.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item><item><title>璋鋒瓕鐧懼害涓璧鋒悳紼嬪簭婧愮爜http://www.shnenglu.com/alantop/archive/2007/09/04/31523.htmlAlanTopAlanTopTue, 04 Sep 2007 01:16:00 GMThttp://www.shnenglu.com/alantop/archive/2007/09/04/31523.htmlhttp://www.shnenglu.com/alantop/comments/31523.htmlhttp://www.shnenglu.com/alantop/archive/2007/09/04/31523.html#Feedback19http://www.shnenglu.com/alantop/comments/commentRss/31523.htmlhttp://www.shnenglu.com/alantop/services/trackbacks/31523.html闃呰鍏ㄦ枃

AlanTop 2007-09-04 09:16 鍙戣〃璇勮
]]>
涓涓皝瑁呮枃浠舵搷浣滃拰鐩綍鎿嶄綔鐨勭被http://www.shnenglu.com/alantop/archive/2007/08/15/30047.htmlAlanTopAlanTopWed, 15 Aug 2007 00:23:00 GMThttp://www.shnenglu.com/alantop/archive/2007/08/15/30047.htmlhttp://www.shnenglu.com/alantop/comments/30047.htmlhttp://www.shnenglu.com/alantop/archive/2007/08/15/30047.html#Feedback6http://www.shnenglu.com/alantop/comments/commentRss/30047.htmlhttp://www.shnenglu.com/alantop/services/trackbacks/30047.html闃呰鍏ㄦ枃

AlanTop 2007-08-15 08:23 鍙戣〃璇勮
]]>
涓涓笉閿欑殑鍏嶈垂鐣岄潰搴?/title><link>http://www.shnenglu.com/alantop/archive/2007/07/31/29084.html</link><dc:creator>AlanTop</dc:creator><author>AlanTop</author><pubDate>Tue, 31 Jul 2007 08:31:00 GMT</pubDate><guid>http://www.shnenglu.com/alantop/archive/2007/07/31/29084.html</guid><wfw:comment>http://www.shnenglu.com/alantop/comments/29084.html</wfw:comment><comments>http://www.shnenglu.com/alantop/archive/2007/07/31/29084.html#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://www.shnenglu.com/alantop/comments/commentRss/29084.html</wfw:commentRss><trackback:ping>http://www.shnenglu.com/alantop/services/trackbacks/29084.html</trackback:ping><description><![CDATA[<a >http://www.gardenui.com/index.aspx</a><br><br>鐣岄潰搴撳浘鐗?br>瀵硅瘽妗?br><img height=600 alt="" src="http://www.shnenglu.com/images/cppblog_com/alantop/01.JPG" width=300 border=0><br><br>澶氭枃妗?br><img height=768 alt="" src="http://www.shnenglu.com/images/cppblog_com/alantop/02.JPG" width=988 border=0><br><br>鍗曟枃妗?br><img height=768 alt="" src="http://www.shnenglu.com/images/cppblog_com/alantop/03.JPG" width=988 border=0><br> <img src ="http://www.shnenglu.com/alantop/aggbug/29084.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.shnenglu.com/alantop/" target="_blank">AlanTop</a> 2007-07-31 16:31 <a href="http://www.shnenglu.com/alantop/archive/2007/07/31/29084.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item><item><title>bitset::flip鐨勫惈涔夊拰鐢ㄦ硶錛?/title><link>http://www.shnenglu.com/alantop/archive/2007/07/11/27866.html</link><dc:creator>AlanTop</dc:creator><author>AlanTop</author><pubDate>Wed, 11 Jul 2007 06:12:00 GMT</pubDate><guid>http://www.shnenglu.com/alantop/archive/2007/07/11/27866.html</guid><wfw:comment>http://www.shnenglu.com/alantop/comments/27866.html</wfw:comment><comments>http://www.shnenglu.com/alantop/archive/2007/07/11/27866.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.shnenglu.com/alantop/comments/commentRss/27866.html</wfw:commentRss><trackback:ping>http://www.shnenglu.com/alantop/services/trackbacks/27866.html</trackback:ping><description><![CDATA[<p>bitset::flip錛氬弽杞墍鏈変綅錛屾垨鑰呮寚瀹氱殑浣嶃?<p>Toggles the value of all the bits in a bitset or toggles a single bit at a specified position. <p>  <p>鍙嶈漿錛氬師鏉ユ槸1錛屽弽杞悗灝辨槸0錛涘鏋滃師鏉ユ槸0錛宼oggle鍚庡氨鏄?. <p>涓嶅甫鍙傛暟璋冪敤錛屽氨鏄弽杞墍鏈変綅銆?<p>甯﹀弬鏁幫紝鍗蟲槸浠庡彸杈規暟0寮濮嬫暟錛屽弽杞鍑犱綅銆傦紙娉ㄦ剰錛氫袱鐐?1鏄粠鍙寵竟鏁幫紝2鏄粠0寮濮嬶級 <p>  <p>// bitset_flip.cpp<br>// compile with: /EHsc<br>#include <bitset><br>#include <iostream> <p>int main( )<br>{<br>    using namespace std;<br>    bitset<5> b1 ( 6 ); <p>    cout << "The collection of bits in the original bitset is: ( "<br>        << b1 << " )" << endl; <p>    bitset<5> fb1;<br>    fb1 = b1.flip ( ); <p>    cout << "After flipping all the bits, the bitset becomes: ( "<br>        << fb1 << " )" << endl; <p>    bitset<5> f3b1;<br>    f3b1 = b1.flip ( 0 ); <p>    cout << "After flipping the fourth bit, the bitset becomes: ( "<br>        << f3b1 << " )" << endl << endl; <p>    bitset<5> b2;<br>    int i;<br>    for ( i = 0 ; i <= 4 ; i++ )<br>    {<br>        b2.flip(i);<br>        cout << b2 << "  The bit flipped is in position "<br>            << i << ".\n";<br>    }<br>} <p>  <p>榪愯緇撴灉錛?<p><a href="http://www.shnenglu.com/images/cppblog_com/alantop/WindowsLiveWriter/bitsetflip_C6F3/flip.jpg" atomicselection="true"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="229" alt="flip" src="http://www.shnenglu.com/images/cppblog_com/alantop/WindowsLiveWriter/bitsetflip_C6F3/flip_thumb.jpg" width="686" border="0"></a><img src ="http://www.shnenglu.com/alantop/aggbug/27866.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.shnenglu.com/alantop/" target="_blank">AlanTop</a> 2007-07-11 14:12 <a href="http://www.shnenglu.com/alantop/archive/2007/07/11/27866.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item><item><title>濡備綍鎻愬彇鏁板瓧鍜屽瓧絎︽販鍚堢殑瀛楃涓?/title><link>http://www.shnenglu.com/alantop/archive/2007/07/11/27848.html</link><dc:creator>AlanTop</dc:creator><author>AlanTop</author><pubDate>Wed, 11 Jul 2007 02:15:00 GMT</pubDate><guid>http://www.shnenglu.com/alantop/archive/2007/07/11/27848.html</guid><wfw:comment>http://www.shnenglu.com/alantop/comments/27848.html</wfw:comment><comments>http://www.shnenglu.com/alantop/archive/2007/07/11/27848.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.shnenglu.com/alantop/comments/commentRss/27848.html</wfw:commentRss><trackback:ping>http://www.shnenglu.com/alantop/services/trackbacks/27848.html</trackback:ping><description><![CDATA[<p>#include <stdlib.h><br>#include <stdio.h> <p>int main( void )<br>{<br>    char   *string, *stopstring;<br>    long   l; <p>    string = "10110134";<br>    l = strtol( string, &stopstring, 10 );<br>    printf( "string = %s\n", string );<br>    printf("   strtol = %ld\n", l );<br>    printf("   Stopped scan at: %s\n\n", stopstring );<br>} <img src ="http://www.shnenglu.com/alantop/aggbug/27848.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.shnenglu.com/alantop/" target="_blank">AlanTop</a> 2007-07-11 10:15 <a href="http://www.shnenglu.com/alantop/archive/2007/07/11/27848.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item><item><title>浣跨敤bitset鍋氬崄榪涘埗銆佷簩榪涘埗鐨勮漿鎹?/title><link>http://www.shnenglu.com/alantop/archive/2007/07/11/27845.html</link><dc:creator>AlanTop</dc:creator><author>AlanTop</author><pubDate>Wed, 11 Jul 2007 01:47:00 GMT</pubDate><guid>http://www.shnenglu.com/alantop/archive/2007/07/11/27845.html</guid><wfw:comment>http://www.shnenglu.com/alantop/comments/27845.html</wfw:comment><comments>http://www.shnenglu.com/alantop/archive/2007/07/11/27845.html#Feedback</comments><slash:comments>3</slash:comments><wfw:commentRss>http://www.shnenglu.com/alantop/comments/commentRss/27845.html</wfw:commentRss><trackback:ping>http://www.shnenglu.com/alantop/services/trackbacks/27845.html</trackback:ping><description><![CDATA[<p>渚嬪瓙涓銆佸崄榪涘埗杞崲浜岃繘鍒? <p>// bitset_bitset.cpp<br>// compile with: /EHsc<br>#include <bitset><br>#include <iostream> <p>int main( )<br>{<br>    // Using the default constructor<br>    using namespace std; <p>    // Using the second member function<br>    bitset<20> b1 ( 5 );<br>    cout << "The set of bits in bitset<5> b1( 5 ) is: ( "<br>        << b1 << " )." << endl; <p>}</p> <p> </p> <p>渚嬪瓙浜屻佷簩榪涘埗杞崲鍗佽繘鍒? <p>#include <bitset><br>#include <iostream> <p>void main()<br>{<br>    using namespace std;<br>    string bitval5 ("11110011011");<br>    int length = strlen("11110011011");<br>    bitset<11> b5 ( bitval5);<br>    cout << b5 << endl;<br>    cout << b5.to_ulong( ) << endl;<br>} <p>  <p>渚嬪瓙涓夈佹敮鎸佹寚閽?br>#include <bitset><br>#include <iostream> <p>void main()<br>{<br>    using namespace std;<br>    char p[] = "11110011011"; <p>    bitset<50> b5 ( p);<br>    cout << b5 << endl;<br>    cout << b5.to_ulong( ) << endl;<br>} <img src ="http://www.shnenglu.com/alantop/aggbug/27845.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.shnenglu.com/alantop/" target="_blank">AlanTop</a> 2007-07-11 09:47 <a href="http://www.shnenglu.com/alantop/archive/2007/07/11/27845.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item></channel></rss> <footer> <div class="friendship-link"> <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:</p> <a href="http://www.shnenglu.com/" title="精品视频久久久久">精品视频久久久久</a> <div class="friend-links"> </div> </div> </footer> <a href="http://www.hlpswa.cn" target="_blank">伊人久久亚洲综合影院</a>| <a href="http://www.f938.cn" target="_blank">久久久久久午夜精品</a>| <a href="http://www.fandele.cn" target="_blank">亚洲AV无码1区2区久久</a>| <a href="http://www.888wx.cn" target="_blank">色婷婷综合久久久久中文一区二区</a>| <a href="http://www.r10211.cn" target="_blank">国产精品久久久久久久久久影院</a>| <a href="http://www.giep.cn" target="_blank">一本一本久久a久久综合精品蜜桃</a>| <a href="http://www.webfi.cn" target="_blank">亚洲狠狠婷婷综合久久久久</a>| <a href="http://www.lcvy.cn" target="_blank">久久亚洲精品中文字幕三区</a>| <a href="http://www.665m.cn" target="_blank">久久精品国产亚洲AV影院</a>| <a href="http://www.hoqw.cn" target="_blank">久久精品成人免费网站</a>| <a href="http://www.sohucn.com.cn" target="_blank">久久亚洲国产最新网站</a>| <a href="http://www.dliif.cn" target="_blank">免费精品国产日韩热久久</a>| <a href="http://www.chainou.cn" target="_blank">亚洲精品WWW久久久久久</a>| <a href="http://www.iaicy.cn" target="_blank">久久笫一福利免费导航</a>| <a href="http://www.oxygeniclife.com.cn" target="_blank">亚洲欧美久久久久9999</a>| <a href="http://www.3hiis.cn" target="_blank">亚洲中文久久精品无码ww16</a>| <a href="http://www.worktrotter.cn" target="_blank">伊人久久大香线蕉综合影院首页</a>| <a href="http://www.oushiliansuowa.cn" target="_blank">欧美日韩精品久久免费</a>| <a href="http://www.squc.cn" target="_blank">久久精品99久久香蕉国产色戒 </a>| <a href="http://www.lianliankan123.cn" target="_blank">亚洲狠狠婷婷综合久久久久</a>| <a href="http://www.sxdc.net.cn" target="_blank">精品多毛少妇人妻AV免费久久</a>| <a href="http://www.zhoushandk.cn" target="_blank">久久久久亚洲av综合波多野结衣 </a>| <a href="http://www.cixivip.cn" target="_blank">色悠久久久久久久综合网</a>| <a href="http://www.pzpt369.cn" target="_blank">欧美与黑人午夜性猛交久久久</a>| <a href="http://www.tjpengzhi.cn" target="_blank">亚洲精品无码久久久久AV麻豆</a>| <a href="http://www.wxwyx.cn" target="_blank">99久久国产宗和精品1上映 </a>| <a href="http://www.ojh365ok123.com.cn" target="_blank">色99久久久久高潮综合影院</a>| <a href="http://www.zpktv.cn" target="_blank">av无码久久久久不卡免费网站 </a>| <a href="http://www.ajchugui.cn" target="_blank">久久久久久亚洲精品影院</a>| <a href="http://www.sunwebs.cn" target="_blank">国产精品免费看久久久香蕉</a>| <a href="http://www.rqhsjc.cn" target="_blank">97久久超碰成人精品网站</a>| <a href="http://www.jiaotongpai.cn" target="_blank">午夜欧美精品久久久久久久</a>| <a href="http://www.idhm.cn" target="_blank">久久香综合精品久久伊人</a>| <a href="http://www.dtvpartner.com.cn" target="_blank">久久亚洲中文字幕精品一区</a>| <a href="http://www.yxwelding.com.cn" target="_blank">一本大道加勒比久久综合</a>| <a href="http://www.v4169.cn" target="_blank">久久精品国产99久久久</a>| <a href="http://www.medicalonline.cn" target="_blank">久久超碰97人人做人人爱</a>| <a href="http://www.jimoge.cn" target="_blank">久久精品国产亚洲AV无码麻豆 </a>| <a href="http://www.qj119.cn" target="_blank">伊人久久大香线蕉成人</a>| <a href="http://www.5299.net.cn" target="_blank">一级A毛片免费观看久久精品</a>| <a href="http://www.huishougongsi.com.cn" target="_blank">久久久久国产一区二区三区</a>| <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body>