摘要:
3 阅读全文
摘要:
2 阅读全文
摘要:
阅读全文
摘要:
1 package oop.demo02; 2 //创建一个学生类,类中只有属性和方法 3 public class Student { 4 //属性:字段 5 String name;//null 6 int age;//0 7 //方法 8 public void study(){ 9 Syst 阅读全文
摘要:
1 package oop.demo01; 2 3 public class Demo02 { 4 5 public static void main(String[] args) { 6 //静态方法 + static //类名.方法名 7 Student.say(); 8 9 //非静态方法 1 阅读全文