背景:把两个项目同时部署在tomcat,启动快好的时候,报java.lang.OutOfMemoryError: PermGen space原因:因为两个项目的jar包太多,JVM把里面的class文件加载时把默认的内存撑爆了解决方法:(1)查找了很多网上的方法,但是还是解决不了我的问题。我的解决方...
分类:
编程语言 时间:
2015-04-02 22:14:19
阅读次数:
164
Language : C++ 4.8.2#include#includeint main(void){ int n; int sum; // 记录每一组数据里面所有空格的个数 int count; // 记录单行的个数 int length; int min_space...
分类:
系统相关 时间:
2015-04-02 18:25:23
阅读次数:
150
problem:
Follow up for "Unique Paths":
Now consider if some obstacles are added to the grids. How many unique paths would there be?
An obstacle and empty space is marked as 1 and 0 resp...
分类:
其他好文 时间:
2015-04-02 15:05:20
阅读次数:
127
JVM内存组成结构JVM由堆、栈、本地方法栈、方法区等部分组成,结构图如下所示:1)堆所有通过new创建的对象的内存都在堆中分配,其大小可以通过-Xmx和-Xms来控制。堆被划分为新生代和旧生代,新生代又被进一步划分为Eden和Survivor区,最后Survivor由From Space和To S...
分类:
其他好文 时间:
2015-04-02 15:04:37
阅读次数:
119
解决
OutOfMemoryError: PermGen space
,过程是痛苦的,结果是舒畅的
最近自己的程序在
Redeploy
重新部署的时候,老提示
OutOfMemoryError: PermGen
space
错误,在网络上搜索了相关的资料,但是按照做后还是存在这个问题。由
于我是第一次碰到这个问题,
花费了我
2
天时间,
过程比较痛苦,
...
分类:
其他好文 时间:
2015-04-02 11:47:26
阅读次数:
125
题目:Given a linked list, swap every two adjacent nodes and return its head.
For example,
Given 1->2->3->4, you should return the list as 2->1->4->3.
Your algorithm should use only constant space...
分类:
其他好文 时间:
2015-04-02 10:31:49
阅读次数:
114
通配符:文件名统配是bash的特性之一,通配符一般用于文件名的匹配。*:任意长度的任意字符?:匹配任意单字符[]:匹配指定范围内的任意单字符例:[abc],[a-z],[0-9],[0-9a-z][^]:匹配指定范围以外的任意单字符例:[^0-9a-z]字符集合:[:space:]:所有空白字符[:punct:]:所有..
分类:
系统相关 时间:
2015-04-01 20:24:16
阅读次数:
222
problem:
Given a string s consists of upper/lower-case alphabets and empty space characters '
', return the length of last word in the string.
If the last word does not exist, return 0...
分类:
其他好文 时间:
2015-04-01 17:37:54
阅读次数:
204
每日对着电脑,写代码程序,离开了外部世界的喧闹(racket),有点像基督徒的神职人员的生活,有点像中世纪传教士的生活![在此输入图片描述][1] [1]: http://static.oschina.net/uploads/space/2015/0401/120509_...
分类:
其他好文 时间:
2015-04-01 13:39:54
阅读次数:
304
题目:
Given a string s consists of upper/lower-case alphabets and empty space characters '
', return the length of last word in the string.
If the last word does not exist, return 0.
Note: ...
分类:
其他好文 时间:
2015-04-01 11:31:38
阅读次数:
138