Java
梧桐王子
这个作者很懒,什么都没留下…
展开
-
使用Runtime监控内存使用情况
new ProcessBuilder(cmdarray).environment(envp).directory(dir).start();Runtime.getRuntime().addShutdownHook(Thread);Runtime.getRuntime().removeShutdownHook(Thread);Runtime.getRuntime().原创 2014-01-04 15:01:22 · 729 阅读 · 0 评论 -
Proxy
一、Static Proxyinterface HelloService { public void hello(String msg);}class HelloServiceImpl implements HelloService { public void hello(String msg) { System.out.println("hello, "原创 2014-01-05 21:26:47 · 442 阅读 · 0 评论 -
Throwable、Error和Exception
一、类继承结构java.lang.Object|- java.lang.Throwable|- java.lang.Error|- java.lang.Exception二、Throwable、Error和Exception的区别Throwable所有error/exception的父类,只有其实例可被throw & catch。Error应用程序不应试原创 2014-01-03 17:05:28 · 748 阅读 · 0 评论 -
instanceof, isInstance, isAssignableFrom
import java.util.ArrayList;import java.util.List;public class Test { public static void main(String[] args) throws Exception { ArrayList list = new ArrayList(); System.out.pri原创 2014-01-18 22:29:49 · 513 阅读 · 0 评论 -
Iterator & ListIterator
Iterator - 单向仅可删除hasNext()next()remove()ListIterator - 双向可增改删hasPrevious()hasNext()previous()next()add(Object)set(Object)remove()原创 2014-01-18 22:58:36 · 440 阅读 · 0 评论