Fork me on github
摘要: 详细介绍如果使用Windows Live Writer 2012 和Word 2013来写本地博客,以及关于代码高亮显示的一些注意事项,还有二者的有缺点。 阅读全文
posted @ 2013-04-13 19:07 我是小茗同学 阅读(38298) 评论(111) 推荐(201) 编辑
摘要: Java学习札记2013 姓名:刘显安 2013年3月11日 第一个月:20130311:内存溢出的三种形式:堆溢出: /** * @author LXA * 堆溢出 */ public class Heap { public static void main(String[] args) { ArrayList list=new ArrayList(); while(true) { list.add(new Heap()); } } }报错:java.lang.OutOfMemoryError: Java heap space栈溢出: /** * @author LXA * 栈溢出 ... 阅读全文
posted @ 2013-04-13 14:04 我是小茗同学 阅读(1298) 评论(0) 推荐(0) 编辑