黄色高亮 :shift + f8退出程序 : Alt+F4重画屏幕 : Ctrl+Alt+Space完成语法 : Ctrl+E复制一行 : Ctrl+K恰好复制该位置右边的该行的字符 : Ctrl+Shift+K复制到剪贴板 : Ctrl+Del剪切一行 : Ctrl+U剪切该位置...
分类:
其他好文 时间:
2014-10-20 13:16:15
阅读次数:
254
收到消息某系统一个节点因为内存溢出而宕机,系统的中间件是weblogic,数据库的oracle。 1. 先用IBM HeapAnalyzer分析内存溢出时的dump文件,找到占用内存最多的请求,然后看代码。 2. 在走查代码发现,此类中的方法都特别简单,对单表的增删改查,有查询的地方都是...
分类:
编程语言 时间:
2014-10-18 16:47:05
阅读次数:
153
当Eclipse运行处理大量的数据时,会报如下内存溢出的异常信息
java.lang.OutOfMemoryError: Java heap space
解决方法:
在Eclipse里选:Window->Preference->java->Installed JREs->Edit(选中jre) 或者 run->run configurations->Argments->Argment...
分类:
系统相关 时间:
2014-10-18 15:34:43
阅读次数:
161
The parallelogram law in inner product spacesVectors involved in the parallelogram law.In a normed space, the statement of the parallelogram law is an...
分类:
其他好文 时间:
2014-10-18 11:03:28
阅读次数:
221
Determine whether an integer is a palindrome. Do this without extra space.click to show spoilers.Some hints:Could negative integers be palindromes? (i...
分类:
其他好文 时间:
2014-10-17 20:22:17
阅读次数:
220
Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?Solution:快慢指针。 1 /** 2 * Definition for s....
分类:
其他好文 时间:
2014-10-17 15:16:48
阅读次数:
179
2014年10月17日10:29:501.Ctrl+Space 说明:内容助理。提供对方法,变量,参数,javadoc等得提示, 应运在多种场合,总之需要提示的时候可先按此快捷键。 注:避免输入法的切换设置与此设置冲突2.Ctrl+/ 说明:添加/消除//注释,在eclipse2.0中,消除注释为C...
分类:
系统相关 时间:
2014-10-17 11:49:24
阅读次数:
176
ios 下自定义导航栏的BarButtonItem 会产生一些偏移问题,解决方案: 通过新建一个系统的带固定距离的Item来调节你的Item#define IOS7_NAVI_SPACE -10} [self.navigationItem setLeftBarButtonItems:[self...
分类:
移动开发 时间:
2014-10-17 00:24:53
阅读次数:
250
现在收集器都是采用分代收集算法,堆被划分为新生代和老年代。新生代主要存储新创建的对象和尚未进入老年代的对象。老年代存储经过多次新生代GC(Minor GC)任然存活的对象。 新生代:程序新创建的对象都是从新生代分配内存,新生代由Eden Space和两块相同大小的Survivor Space(...
分类:
编程语言 时间:
2014-10-16 18:26:22
阅读次数:
2499
OS:HP-UNIX
ORA-27300: OS system dependent operation:fork failed with status: 12
ORA-27301: OS failure message: Not enough space
ORA-27302: failure occurred at: skgpspawn3
swapinfo -mt
发现s...
分类:
其他好文 时间:
2014-10-16 14:53:22
阅读次数:
274