Fork me on GitHub
摘要: 类加载的三种机制 1、通过getClass People p =new People(); Class c = p.getClass(); 2、People.class Class c1=People.class; 3、Class.forName("tianpo.com.demo.People"); 阅读全文
posted @ 2018-06-23 18:11 迁梦余光 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 所有流对象 InputStream 字节流 FileInputStream 字节流 专门读写非文本文件的 BufferedInputStream 高效流 OutPutStream 字节流 FileOutPutStream 字节流 专门读写非文本文件的 BufferedOutputStream 高效流 阅读全文
posted @ 2018-06-23 08:01 迁梦余光 阅读(612) 评论(0) 推荐(0) 编辑
摘要: Java中开启多线程的三种方式 1、通过继承Thread实现 2、implements Runnable 这种方式使用较多,面向接口可以多实现 3、通过实现Callable接口+Future 关于Runable和Callable的区别 https://blog.csdn.net/heyutao007 阅读全文
posted @ 2018-06-23 07:58 迁梦余光 阅读(158) 评论(0) 推荐(0) 编辑