个人博客:skyfffire.cn
摘要: 1 package cn.skyfffire; 2 3 /** 4 * 5 * @author skyfffire 6 * 7 */ 8 public class Test { 9 static boolean gcrun = false; // GC是垃圾回收器 10 static boolean f = false; ... 阅读全文
posted @ 2017-02-26 14:24 skyfffire 阅读(399) 评论(0) 推荐(0) 编辑
摘要: package cn.skyfffire; import java.util.Date; /** * * @author skyfffire * */ public class Test { String name; Date birthDay; Test(String _name) { name = _name; } ... 阅读全文
posted @ 2017-02-26 13:46 skyfffire 阅读(106) 评论(0) 推荐(0) 编辑
摘要: package cn.skyfffire; /** * * @author skyfffire * */ public class Test { // void fun1() { // System.out.println("调用无返回值的方法"); // } // // int fun1() { // System.out.pr... 阅读全文
posted @ 2017-02-26 13:34 skyfffire 阅读(109) 评论(0) 推荐(0) 编辑
摘要: package cn.skyfffire; /** * * @author skyffire * */ class Tree { int height; Tree() { prt("无参数构造"); } Tree(int i) { prt("创建Class Tree使用Integer参数" + i);... 阅读全文
posted @ 2017-02-26 13:12 skyfffire 阅读(165) 评论(0) 推荐(0) 编辑
个人博客:skyfffire.cn