当前位置:   article > 正文

Java入门——面向对象(上)01_学生和老师java

学生和老师java

Java面向对象学习的三条主线:

 

  1. Java类及类的成员:属性、方法、构造器;代码块、内部类
  2. 面向对象的三大特征:封装性、继承性、多态性
  3. 其他关键字:this、super、static、final、abstract、interface、package、import等。


何谓“面向对象”的编程思想?

首先解释一下“思想”。

先问你个问题:你想做个怎样的人?

首先你会回答:我想做个好人,孝敬父母、尊重长辈、关爱亲朋……

你看,这就是思想。这是你做人的思想,或者说,是你做人的原则。

做人有做人的原则,编程也有编程的原则。这些编程的原则呢,就是编程思想。


1、面向过程(POP)与面向对象(OOP)

        二者都是一种思想,面向对象是相对于面向过程而言,面向过程,强调的是功能行为,以函数为最小单位,考虑怎么做。面向对象,将功能封装进对象,强调具备了功能的对象,以类/对象为最小单位,考虑谁来做。

        面向对象更加强调运用人类在日常的思维逻辑中采用的思想方法与原则,如抽象、分类、继承、聚合、多态等。

面向对象:Object Oriented Programming
面向过程:Procedure Oriented Programming

  1. /*
  2. * 1.面向过程:强调的是功能行为,以函数为最小单位,考虑怎么做。
  3. *
  4. * ① 打开冰箱
  5. * ② 把大象装进冰箱
  6. * ③ 把冰箱门关住
  7. *
  8. * 2.面向对象:强调具备了功能的对象,以类/对象为最小单位,考虑谁来做。
  9. * 人{
  10. * 打开(冰箱){
  11. * 冰箱.开门();
  12. * }操作(大象){
  13. * 大象.进入(冰箱);
  14. * }关闭(冰箱){
  15. * 冰箱.关门();
  16. * }
  17. * }
  18. *
  19. * 冰箱{
  20. * 开门(){
  21. * }
  22. * 关门(){
  23. * }
  24. * }
  25. *
  26. * 大象{
  27. * 进入(冰箱){
  28. * }
  29. * }
  30. */

面向对象的思想概述

  • 程序员从面向过程的执行者转化成了面向对象的指挥者
  • 面向对象分析方法分析问题的思路和步骤:

        ① 根据问题需要,选择问题所针对的现实世界中的实体
        ② 从实体中寻找解决问题相关的属性和功能,这些属性和功能就形成了概念世界中的类。
        ③把抽象的实体用计算机语言进行描述,形成计算机世界中类的定义。即借助某种程序语言,把类构造成计算机能够识别和处理的数据结构。
        ④将类实例化成计算机世界中的对象。对象是计算机世界中解决问题的最终工具。

2、类和对象 

面向对象的两个要素:

类:对一类事物的描述,是抽象的、概念上的定义

对象:是实际存在的该类事物的每个个体,因而也称为实例(instance)。对象是由类派生出来的。

可以理解为: 类 = 抽象概念的人; 对象 = 实实在在的某个人

面向对象程序设计的重点是类的设计

类的设计,其实就是类的成员的设计

2.1 Java类及类的成员

现实世界的生物体,大到鲸鱼,小到蚂蚁,都是由最基本的细胞构成的。同理,Java代码世界是由诸多个不同功能的类构成的。

现实生物世界中的细胞又是由什么构成的呢?细胞核、细胞质、……那么,Java中用类class来描述事物也是如此。常见的类的成员有:

            >属 性:对应类中的成员变量

            >行 为:对应类中的成员方法

Field = 属性 = 成员变量,Method = (成员)方法 = 函数

生活中描述事物无非就是描述事物的属性和行为。如:人有身高、体重等属性,有说话,打球行为。

2.2 类和对象的创建

  1. /*
  2. * 一、设计类,其实就是设计类的成员
  3. *
  4. * 属性 = 成员变量 = field = 域、字段
  5. * 方法 = 成员方法 = 函数 = method
  6. *
  7. * 创建类的对象 = 类的实例化 = 实例化类
  8. *
  9. * 二、类和对象的使用(面向对象思想落地的实现);
  10. * 1.创建类,设计类的成员
  11. * 2.创建类的对象
  12. * 3.通过“对象.属性”或“对象.方法”调用对象的结构
  13. *
  14. * 三、如果创建了一个类的多个对象,则每个对象都独立的拥有一套类的属性。(非static的)
  15. * 意味着:如果我们修改一个对象的属性a,则不影响另外一个对象属性a的值。
  16. */
  17. //测试类
  18. public class PersonTest {
  19. public static void main(String[] args){
  20. //创建Person类的对象
  21. Person p1 = new Person();
  22. //Scanner scanner = new Scanner(System.in);
  23. //调用对象的结构:属性、方法
  24. //调用属性:“对象.属性”
  25. p1.name = "Tom";
  26. p1.isMale = true;
  27. System.out.println(p1.name);
  28. //调用方法:“对象.方法”
  29. p1.eat();
  30. p1.sleep();
  31. p1.talk("Chinese");
  32. //*****************************
  33. Person p2 = new Person();
  34. System.out.println(p2.name);//null
  35. System.out.println(p2.isMale);
  36. //*****************************
  37. //将p1变量保存的对象地址赋给p3,导致p1和p3指向了堆空间中的同一个对象实体。
  38. Person p3 = p1;
  39. System.out.println(p3.name);//Tom
  40. p3.age = 10;
  41. System.out.println(p1.age);//10
  42. }
  43. }
  44. /*
  45. * 类的语法格式:
  46. * 修饰符class类名{
  47. * 属性声明;
  48. * 方法声明;
  49. * }
  50. * 说明:修饰符public:类可以被任意访问类的正文要用{}括起来
  51. */
  52. //创建类,设计类的成员
  53. class Person{
  54. //属性
  55. String name;
  56. int age = 1;
  57. boolean isMale;
  58. //方法
  59. public void eat(){
  60. System.out.println("人可以吃饭");
  61. }
  62. public void sleep(){
  63. System.out.println("人可以睡觉");
  64. }
  65. public void talk(String language){
  66. System.out.println("人可以说话,使用的是:" + language);
  67. }
  68. }

 2.3 对象的内存解析

  • 堆(Heap):此内存区域的唯一目的就是存放对象实例,几乎所有的对象实例都在这里分配内存。这一点在Java虚拟机规范中的描述是:所有的对象实例以及数组都要在堆上分配。
  • 栈(Stack):通常所说的栈,是指虚拟机栈, 用于存储局部变量等。局部变量表存放了编译期可知长度的各种基本数据类型(boolean、byte、char 、 short 、 int 、 float 、 long 、double)、对象引用(reference类型,它不等同于对象本身,是对象在堆内存的首地址)。 方法执行完,自动释放。
  • 方法区(Method Area),用于存储已被虚拟机加载的类信息、常量、静态变量、即时编译器编译后的代码等数据。

  1. Person p1 = new Person();
  2. p1.name = "Tom";
  3. p1.isMale = true;
  4. Person p2 = new Person();
  5. system.out.println(p2.name);
  6. Person p3 = p1;
  7. p3.age = 10;

 

 3、类的成员之一:属性

  1. /*
  2. * 类中属性的使用
  3. *
  4. * 属性(成员变量) vs 局部变量
  5. * 1.相同点:
  6. * 1.1 定义变量的格式:数据类型 变量名 = 变量值
  7. * 1.2 先声明,后使用
  8. * 1.3 变量都有其对应的作用域
  9. *
  10. * 2.不同点:
  11. * 2.1 在类中声明的位置不同
  12. * 属性:直接定义在类的一对{}内
  13. * 局部变量:声明在方法内、方法形参、构造器形参、构造器内部的变量
  14. *
  15. * 2.2 关于权限修饰符的不同
  16. * 属性:可以在声明属性时,指明其权限,使用权限修饰符。
  17. * 常用的权限修饰符:private、public、缺省、protected
  18. * 目前声明属性时,都使用缺省即可。
  19. * 局部变量:不可以使用权限修饰符。
  20. *
  21. * 2.3 默认初始化值的情况:
  22. * 属性:类的属性,根据其类型,都有默认初始化值。
  23. * 整型(byte、short、int、long):0
  24. * 浮点型(float、double):0.0
  25. * 字符型(char):0(或‘\u0000’)
  26. * 布尔型(boolean):false
  27. *
  28. * 引用数据类型(类、数组、接口):null
  29. *
  30. * 局部变量:没有默认初始化值
  31. * 意味着:在调用局部变量之前,一定要显式赋值。
  32. * 特别地:形参在调用时,赋值即可。例,45 行
  33. *
  34. * 2.4 在内存中加载的位置,亦各不相同。
  35. * 属性:加载到堆空间中(非 static)
  36. * 局部变量:加载到栈空间
  37. */
  38. public class UserTest {
  39. public static void main(String[] args) {
  40. User u1 = new User();
  41. System.out.println(u1.name);
  42. System.out.println(u1.age);
  43. System.out.println(u1.isMale);
  44. u1.talk("日语");
  45. }
  46. }
  47. class User{
  48. //属性(或成员变量)
  49. String name; //不加 private 即为缺省
  50. public int age; //不加 public 即为缺省
  51. boolean isMale;
  52. public void talk(String language){//language:形参,也是局部变量
  53. System.out.println("我们使用" + language + "进行交流。");
  54. }
  55. public void eat(){
  56. String food = "饼"; //饼:局部变量
  57. System.out.println("北方人喜欢吃:" + food);
  58. }
  59. }

 练习1

  1. /*
  2. 编写教师类和学生类,并通过测试类创建对象进行测试
  3. Student类
  4. 属性:
  5. name:String age:int major:String interests:String
  6. 方法:say() 返回学生的个人信息
  7. Teacher类
  8. 属性:
  9. name:String age:int teachAge:int course:String
  10. 方法:say() 输出教师的个人信息
  11. */
  12. public class School {
  13. public static void main(String[] args) {
  14. Student stu = new Student();
  15. stu.name = "小明";
  16. stu.age = 16;
  17. Teacher tea = new Teacher();
  18. tea.name = "王老师";
  19. tea.age = 27;
  20. tea.say(stu.name,stu.age);
  21. stu.say(tea.name, tea.age);
  22. }
  23. }
  24. class Student{
  25. String name;
  26. int age;
  27. String major;
  28. String interests;
  29. void say(String name, int age){
  30. System.out.println("这个学生是:"+name+"年龄是:"+age); }
  31. }
  32. class Teacher{
  33. String name;
  34. int age;
  35. String teachAge;
  36. String course;
  37. void say(String name, int age){
  38. System.out.println("这个老师是:"+name+"年龄是:"+age);
  39. }
  40. }

4、类的成员之二:方法

4.1 类中方法的声明和使用

  1. /*
  2. * 类中方法的声明和使用
  3. *
  4. * 方法:描述类应该具有的功能。
  5. * 比如:Math类:sqrt()\random() \...
  6. * Scanner类:nextXxx() ...
  7. * Arrays类:sort() \ binarySearch() \ toString() \ equals() \ ...
  8. *
  9. * 1.举例:
  10. * public void eat(){}
  11. * public void sleep(int hour){}
  12. * public String getName(){}
  13. * public String getNation(String nation){}
  14. *
  15. * 2. 方法的声明:权限修饰符 返回值类型 方法名(形参列表){
  16. * 方法体
  17. * }
  18. * 注意:static、final、abstract 来修饰的方法,后面再讲。
  19. *
  20. * 3. 说明:
  21. * 3.1 关于权限修饰符:默认方法的权限修饰符先都使用public
  22. * Java规定的4种权限修饰符:private、public、缺省、protected -->封装性再细说
  23. *
  24. * 3.2 返回值类型: 有返回值 vs 没有返回值
  25. * 3.2.1 如果方法有返回值,则必须在方法声明时,指定返回值的类型。同时,方法中,需要使用
  26. * return关键字来返回指定类型的变量或常量:“return 数据”。
  27. * 如果方法没有返回值,则方法声明时,使用void来表示。通常,没有返回值的方法中,就不需要
  28. * 使用return.但是,如果使用的话,只能“return;”表示结束此方法的意思。
  29. *
  30. * 3.2.2 我们定义方法该不该有返回值?
  31. * ① 题目要求
  32. * ② 凭经验:具体问题具体分析
  33. *
  34. * 3.3 方法名:属于标识符,遵循标识符的规则和规范,“见名知意”
  35. * 3.4 形参列表:方法名可以声明0个、1个,或多个形参。
  36. * 3.4.1 格式:数据类型1 形参1,数据类型2 形参2,...
  37. *
  38. * 3.4.2 我们定义方法时,该不该定义形参?
  39. * ① 题目要求
  40. * ② 凭经验,具体问题具体分析
  41. * 3.5 方法体:方法功能的体现。
  42. * 4. return关键字的使用:
  43. * 1.使用范围:使用在方法体中
  44. * 2.作用:① 结束方法
  45. * ② 针对于有返回值类型的方法,使用"return 数据"方法返回所要的数据。
  46. * 3.注意点:return关键字后不可声明执行语句。
  47. * 5. 方法的使用中,可以调用当前类的属性或方法。
  48. * 特殊的:方法A中又调用了方法A:递归方法。
  49. * 方法中不能定义其他方法。
  50. */
  51. public class CustomerTest {
  52. public static void main(String[] args) {
  53. Customer cust1 = new Customer();
  54. cust1.eat();
  55. //测试形参是否需要设置的问题
  56. // int[] arr = new int[]{3,4,5,2,5};
  57. // cust1.sort();
  58. cust1.sleep(8);
  59. }
  60. }
  61. //客户类
  62. class Customer{
  63. //属性
  64. String name;
  65. int age;
  66. boolean isMale;
  67. //方法
  68. public void eat(){
  69. System.out.println("客户吃饭");
  70. return;
  71. //return后不可以声明表达式
  72. // System.out.println("hello");
  73. }
  74. public void sleep(int hour){
  75. System.out.println("休息了" + hour + "个小时");
  76. eat();
  77. // sleep(10);
  78. }
  79. public String getName(){
  80. if(age > 18){
  81. return name;
  82. }else{
  83. return "Tom";
  84. }
  85. }
  86. public String getNation(String nation){
  87. String info = "我的国籍是:" + nation;
  88. return info;
  89. }
  90. //体会形参是否需要设置的问题
  91. // public void sort(int[] arr){
  92. //
  93. // }
  94. // public void sort(){
  95. // int[] arr = new int[]{3,4,5,2,5,63,2,5};
  96. // //。。。。
  97. // }
  98. public void info(){
  99. //错误的
  100. // public void swim(){
  101. //
  102. // }
  103. }
  104. }

方法的分类:按照是否有形参及返回值 

无返回值有返回值
无形参void方法名(){}返回值的类型方法名(){}
有形参void方法名(新参列表){}返回值的类型方法名(形参列表){}

1.练习1

 

  1. public class Person {
  2. String name;
  3. int age;
  4. /*
  5. * sex:1表示为男性
  6. * sex:0表示为女性
  7. */
  8. int sex;
  9. public void study(){
  10. System.out.println("studying");
  11. }
  12. public void showAge(){
  13. System.out.println("age:" + age);
  14. }
  15. public int addAge(int i){
  16. age += i;
  17. return age;
  18. }
  19. }

测试类

  1. /*
  2. * 要求:
  3. * (1)创建Person类的对象,设置该对象的name、age和sex属性,
  4. * 调用study方法,输出字符串“studying”,
  5. * 调用showAge()方法显示age值,
  6. * 调用addAge()方法给对象的age属性值增加2岁。
  7. * (2)创建第二个对象,执行上述操作,体会同一个类的不同对象之间的关系。
  8. *
  9. */
  10. public class PersonTest {
  11. public static void main(String[] args) {
  12. Person p1 = new Person();
  13. p1.name = "Tom";
  14. p1.age = 18;
  15. p1.sex = 1;
  16. p1.study();
  17. p1.showAge();
  18. int newAge = p1.addAge(2);
  19. System.out.println(p1.name + "的年龄为" + newAge);
  20. System.out.println(p1.age); //20
  21. //*******************************
  22. Person p2 = new Person();
  23. p2.showAge(); //0
  24. p2.addAge(10);
  25. p2.showAge(); //10
  26. p1.showAge(); //20
  27. }
  28. }

 2.练习2

  1. /*
  2. * 2.利用面向对象的编程方法,设计类Circle计算圆的面积。
  3. */
  4. //测试类
  5. public class CircleTest {
  6. public static void main(String[] args) {
  7. Circle c1 = new Circle();
  8. c1.radius = 2.1;
  9. //对应方式一:
  10. // double area = c1.findArea();
  11. // System.out.println(area);
  12. //对应方式二:
  13. c1.findArea();
  14. //错误的调用
  15. double area = c1.findArea(3.4);
  16. System.out.println(area);
  17. }
  18. }
  19. //圆:3.14*r*r
  20. class Circle{
  21. //属性
  22. double radius;
  23. //圆的面积方法
  24. //方法1:
  25. // public double findArea(){
  26. // double area = 3.14 * radius * radius;
  27. // return area;
  28. // }
  29. //方法2:
  30. public void findArea(){
  31. double area = Math.PI * radius * radius;
  32. System.out.println("面积为:" + area);
  33. }
  34. //错误情况:
  35. public double findArea(Double r){
  36. double area = 3.14 * r * r;
  37. return area;
  38. }
  39. }

3.练习3 

  1. /*
  2. * 3.1 编写程序,声明一个method方法,在方法中打印一个10*8的*型矩形,在main方法中调用该方法。
  3. * 3.2修改上一个程序,在method方法中,除打印一个10*8的*型矩形外,再计算该矩形的面积,
  4. * 并将其作为方法返回值。在main方法中调用该方法,接收返回的面积值并打印。
  5. *
  6. * 3.3 修改上一个程序,在method方法提供m和n两个参数,方法中打印一个m*n的*型矩形,
  7. * 并计算该矩形的面积,将其作为方法返回值。在main方法中调用该方法,接收返回的面积值并打印。
  8. *
  9. */
  10. public class ExerTest {
  11. public static void main(String[] args) {
  12. ExerTest esr = new ExerTest();
  13. //3.1测试
  14. // esr.method();
  15. //3.2测试
  16. //方式一:
  17. // int area = esr.method();
  18. // System.out.println("面积为:" + area);
  19. //方式二:
  20. // System.out.println("面积为:" + esr.method());
  21. //3.3测试
  22. System.out.println("面积为:" + esr.method(6,5));
  23. }
  24. //3.1
  25. // public void method(){
  26. // for(int i = 0;i < 10;i++){
  27. // for(int j = 0;j < 8;j++){
  28. // System.out.print("* ");
  29. // }
  30. // System.out.println();
  31. // }
  32. // }
  33. //3.2
  34. // public int method(){
  35. // for(int i = 0;i < 10;i++){
  36. // for(int j = 0;j < 8;j++){
  37. // System.out.print("* ");
  38. // }
  39. // System.out.println();
  40. // }
  41. // return 10 * 8;
  42. // }
  43. //3.3
  44. public int method(int m,int n){
  45. for(int i = 0;i < m;i++){
  46. for(int j = 0;j < n;j++){
  47. System.out.print("* ");
  48. }
  49. System.out.println();
  50. }
  51. return m * n;
  52. }
  53. }

4.练习4 

  1. /*
  2. * 4. 对象数组题目:定义类Student,包含三个属性:
  3. * 学号number(int),年级state(int),成绩score(int)。
  4. * 创建20个学生对象,学号为1到20,年级和成绩都由随机数确定。
  5. * 问题一:打印出3年级(state值为3)的学生信息。
  6. * 问题二:使用冒泡排序按学生成绩排序,并遍历所有学生信息
  7. * 提示: 1) 生成随机数:Math.random(),返回值类型double;
  8. * 2) 四舍五入取整:Math.round(double d),返回值类型long。
  9. *
  10. */
  11. public class StudentTest {
  12. public static void main(String[] args) {
  13. //声明一个Student类型的数组
  14. Student[] stu = new Student[20];
  15. for(int i = 0;i <stu.length;i++){
  16. //给数组元素赋值
  17. stu[i] = new Student();
  18. //给Student的对象的属性赋值
  19. stu[i].number = i + 1;
  20. //年级:[1,6]
  21. stu[i].state = (int)(Math.random() * (6 - 1 + 1) + 1);
  22. //成绩:[0,100]
  23. stu[i].score = (int)(Math.random() * (100 - 0 + 1));
  24. }
  25. //遍历学生数组
  26. for(int i = 0;i < stu.length;i++){
  27. // System.out.println(stu[i].number + "," + stu[i].state
  28. // + "," + stu[i].score);
  29. System.out.println(stu[i].info());
  30. }
  31. System.out.println("*********以下是问题1*********");
  32. //问题一:打印出3年级(state值为3)的学生信息。
  33. for(int i = 0;i < stu.length;i++){
  34. if(stu[i].state == 3){
  35. System.out.println(stu[i].info());
  36. }
  37. }
  38. System.out.println("********以下是问题2**********");
  39. //问题二:使用冒泡排序按学生成绩排序,并遍历所有学生信息。
  40. for(int i = 0;i < stu.length - 1;i++){
  41. for(int j = 0;j <stu.length - 1 - i;j++){
  42. if(stu[j].score >stu[j+1].score){
  43. //如果需要换序,交换的是数组的元素,Student对象!!!
  44. Student temp = stu[j];
  45. stu[j] = stu[j+1];
  46. stu[j+1] = temp;
  47. }
  48. }
  49. }
  50. //遍历学生数组
  51. for(int i = 0;i < stu.length;i++){
  52. System.out.println(stu[i].info());
  53. }
  54. }
  55. }
  56. class Student{
  57. int number; //学号
  58. int state; //年级
  59. int score; //成绩
  60. //显示学生信息的方法
  61. public String info(){
  62. return "学号:" + number + ",年级:" + state + ",成绩:" + score;
  63. }
  64. }

 5.练习4优化

  1. /*
  2. * 4. 对象数组题目:定义类Student,包含三个属性:
  3. * 学号number(int),年级state(int),成绩score(int)。
  4. * 创建20个学生对象,学号为1到20,年级和成绩都由随机数确定。
  5. * 问题一:打印出3年级(state值为3)的学生信息。
  6. * 问题二:使用冒泡排序按学生成绩排序,并遍历所有学生信息
  7. * 提示: 1) 生成随机数:Math.random(),返回值类型double;
  8. * 2) 四舍五入取整:Math.round(double d),返回值类型long。
  9. *
  10. * 此代码是对StudentTest.java的改进,将操作数组的功能封装到方法中。
  11. */
  12. public class StudentTest2 {
  13. public static void main(String[] args) {
  14. //声明一个Student类型的数组
  15. Student2[] stu = new Student2[20];
  16. for(int i = 0;i <stu.length;i++){
  17. //给数组元素赋值
  18. stu[i] = new Student2();
  19. //给Student的对象的属性赋值
  20. stu[i].number = i + 1;
  21. //年级:[1,6]
  22. stu[i].state = (int)(Math.random() * (6 - 1 + 1) + 1);
  23. //成绩:[0,100]
  24. stu[i].score = (int)(Math.random() * (100 - 0 + 1));
  25. }
  26. StudentTest2 test = new StudentTest2();
  27. //遍历学生数组
  28. test.print(stu);
  29. System.out.println("*********以下是问题1*********");
  30. //问题一:打印出3年级(state值为3)的学生信息。
  31. test.searchState(stu, 3);
  32. System.out.println("********以下是问题2**********");
  33. //问题二:使用冒泡排序按学生成绩排序,并遍历所有学生信息。
  34. test.sort(stu);
  35. //遍历学生数组
  36. for(int i = 0;i < stu.length;i++){
  37. System.out.println(stu[i].info());
  38. }
  39. }
  40. /**
  41. *
  42. * @Description 遍历Student[]数组的操作
  43. */
  44. public void print(Student2[] stu){
  45. for(int i = 0;i < stu.length;i++){
  46. System.out.println(stu[i].info());
  47. }
  48. }
  49. /**
  50. *
  51. * @Description 查找Student数组中指定年级的学习信息
  52. */
  53. public void searchState(Student2[] stu,int state){
  54. for(int i = 0;i < stu.length;i++){
  55. if(stu[i].state == state){
  56. System.out.println(stu[i].info());
  57. }
  58. }
  59. }
  60. /**
  61. *
  62. * @Description 给Student数组排序
  63. */
  64. public void sort(Student2[] stu){
  65. for(int i = 0;i < stu.length - 1;i++){
  66. for(int j = 0;j <stu.length - 1 - i;j++){
  67. if(stu[j].score >stu[j+1].score){
  68. //如果需要换序,交换的是数组的元素,Student对象!!!
  69. Student2 temp = stu[j];
  70. stu[j] = stu[j+1];
  71. stu[j+1] = temp;
  72. }
  73. }
  74. }
  75. }
  76. }
  77. class Student2{
  78. int number; //学号
  79. int state; //年级
  80. int score; //成绩
  81. //显示学生信息的方法
  82. public String info(){
  83. return "学号:" + number + ",年级:" + state + ",成绩:" + score;
  84. }
  85. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/237693
推荐阅读
相关标签
  

闽ICP备14008679号