﻿<?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++博客-chenglong7997-最新评论</title><link>http://www.cppblog.com/chenglong7997/CommentsRSS.aspx</link><description /><language>zh-cn</language><pubDate>Sat, 01 Sep 2012 17:15:54 GMT</pubDate><lastBuildDate>Sat, 01 Sep 2012 17:15:54 GMT</lastBuildDate><generator>cnblogs</generator><item><title>re: C/C++ 2D数组的动态分配方法比较</title><link>http://www.cppblog.com/chenglong7997/archive/2012/03/28/169078.html#169218</link><dc:creator>Snape</dc:creator><author>Snape</author><pubDate>Tue, 27 Mar 2012 17:40:00 GMT</pubDate><guid>http://www.cppblog.com/chenglong7997/archive/2012/03/28/169078.html#169218</guid><description><![CDATA[恩，有空的话看看，之前看过一点，很吃力。呵呵@放屁阿狗 <br><img src ="http://www.cppblog.com/chenglong7997/aggbug/169218.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/chenglong7997/" target="_blank">Snape</a> 2012-03-28 01:40 <a href="http://www.cppblog.com/chenglong7997/archive/2012/03/28/169078.html#169218#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: C/C++ 2D数组的动态分配方法比较</title><link>http://www.cppblog.com/chenglong7997/archive/2012/03/27/169078.html#169199</link><dc:creator>放屁阿狗 </dc:creator><author>放屁阿狗 </author><pubDate>Tue, 27 Mar 2012 11:40:00 GMT</pubDate><guid>http://www.cppblog.com/chenglong7997/archive/2012/03/27/169078.html#169199</guid><description><![CDATA[可以看一下linux kernel代码关于虚拟内存的申请和管理代码，那个brk很有趣，相信对以后内存管理有很大帮助<img src ="http://www.cppblog.com/chenglong7997/aggbug/169199.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/chenglong7997/" target="_blank">放屁阿狗 </a> 2012-03-27 19:40 <a href="http://www.cppblog.com/chenglong7997/archive/2012/03/27/169078.html#169199#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: C/C++ 2D数组的动态分配方法比较</title><link>http://www.cppblog.com/chenglong7997/archive/2012/03/27/169078.html#169137</link><dc:creator>Snape</dc:creator><author>Snape</author><pubDate>Tue, 27 Mar 2012 05:29:00 GMT</pubDate><guid>http://www.cppblog.com/chenglong7997/archive/2012/03/27/169078.html#169137</guid><description><![CDATA[你给的例子是二位维数都已知的情况下。有人总结可以分为知道一维维数，二位维数和变形的不同情况。我转载了<a target="_new" href="http://www.cppblog.com/chenglong7997/articles/168955.html">http://www.cppblog.com/chenglong7997/articles/168955.html</a>。我这里说的是维数都未知的情况，但转载中的二维分配方法，思路是一种。这里举出其他方法，感觉更好。你如果有觉得更好的，可以讨论@gbb21<img src ="http://www.cppblog.com/chenglong7997/aggbug/169137.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/chenglong7997/" target="_blank">Snape</a> 2012-03-27 13:29 <a href="http://www.cppblog.com/chenglong7997/archive/2012/03/27/169078.html#169137#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: C/C++ 2D数组的动态分配方法比较</title><link>http://www.cppblog.com/chenglong7997/archive/2012/03/27/169078.html#169135</link><dc:creator>Snape</dc:creator><author>Snape</author><pubDate>Tue, 27 Mar 2012 05:24:00 GMT</pubDate><guid>http://www.cppblog.com/chenglong7997/archive/2012/03/27/169078.html#169135</guid><description><![CDATA[谢谢啊~~@tb<br><img src ="http://www.cppblog.com/chenglong7997/aggbug/169135.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/chenglong7997/" target="_blank">Snape</a> 2012-03-27 13:24 <a href="http://www.cppblog.com/chenglong7997/archive/2012/03/27/169078.html#169135#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: C/C++ 2D数组的动态分配方法比较</title><link>http://www.cppblog.com/chenglong7997/archive/2012/03/27/169078.html#169111</link><dc:creator>gbb21</dc:creator><author>gbb21</author><pubDate>Tue, 27 Mar 2012 02:49:00 GMT</pubDate><guid>http://www.cppblog.com/chenglong7997/archive/2012/03/27/169078.html#169111</guid><description><![CDATA[Wo cao ....<br><br>int (*a)[10] = new int[10][10];<br><br>a[2][4] = 4;<br><br>.....<img src ="http://www.cppblog.com/chenglong7997/aggbug/169111.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/chenglong7997/" target="_blank">gbb21</a> 2012-03-27 10:49 <a href="http://www.cppblog.com/chenglong7997/archive/2012/03/27/169078.html#169111#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: C/C++ 2D数组的动态分配方法比较</title><link>http://www.cppblog.com/chenglong7997/archive/2012/03/27/169078.html#169102</link><dc:creator>tb</dc:creator><author>tb</author><pubDate>Tue, 27 Mar 2012 01:40:00 GMT</pubDate><guid>http://www.cppblog.com/chenglong7997/archive/2012/03/27/169078.html#169102</guid><description><![CDATA[很不错的几个例子<img src ="http://www.cppblog.com/chenglong7997/aggbug/169102.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/chenglong7997/" target="_blank">tb</a> 2012-03-27 09:40 <a href="http://www.cppblog.com/chenglong7997/archive/2012/03/27/169078.html#169102#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>