摘要:
public class Counter { private int count; public Counter(){ count=0; } public int getCount(){ count++; return count; } public void setCount(int count) 阅读全文
摘要:
public class User { String userid,username,sex; public String getUserid(){return userid;} public void setUserid(String userid){this.userid=userid;} pu 阅读全文
摘要:
package test; public class Human { String name; char sex; int age; float height; float weight; public Human(String Name,char Sex,int Age){ this.name=N 阅读全文