摘要:
public class Computer { String name = "电脑";// 名字 int score = 0;// 积分 public int showFist() { //产生随机数 int show = (int) ((Math.random()*10)%3+1); // 产生随 阅读全文
摘要:
对象的两大特征: 属性和方法 1.方法: 访问修饰符 方法返回值类型 方法名称(){ //方法的主体 } 1.无参方法 有返回值 例如:public String play(){ //return的值类型和方法的返回值类型保持一致 return "呵呵"; } 无返回值 例如:public void 阅读全文