摘要: class Person1{ private String name; private static int count; public Person1() { count++; this.name = "NONAME - " + count; } public Person1(String name) { ... 阅读全文
posted @ 2017-11-05 22:26 徐丶杨 阅读(105) 评论(0) 推荐(0) 编辑
摘要: import com.rupeng.game.GameCore;//导入游戏引擎包 public class Jiemian implements Runnable{ public static void main(String[] args) { // TODO Auto-generated method stub GameCore.start(new Jiemian());/... 阅读全文
posted @ 2017-11-05 17:18 徐丶杨 阅读(148) 评论(0) 推荐(0) 编辑
摘要: public class T { public int id; public String name; public int age; public String city; public String introduce() {return + id + ": 我是 " + name + ", 年龄" + age + ", 所在区" + city ;} ... 阅读全文
posted @ 2017-11-05 15:24 徐丶杨 阅读(91) 评论(0) 推荐(0) 编辑