欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

创建类Student和对象

程序员文章站 2022-07-15 17:00:35
...
public class Student {//创建类Student
    String name;
    String sex;
    int age;
    float score;
    public Student() {};
    public Student(String n,String s,int a,float sc) {
        name=n;
        sex=s;
        age=a;
        score=sc;
    }
        void getInfo(String n,String s, int a,float sc) {//定义方法getInFo,获取学生的基本信息

            name=n;
            sex=s;
            age=a;
            score=sc;

        }
        void showInfo()//定义方法showInFo,显示学生的信息
        {
            System.out.println("姓名:" +name);
            System.out.println("性别:" +sex);
            System.out.println("年龄 :" +age);
            System.out.println("分数:"+score);
        }
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        Student stu1= new Student();//对第一个学生实例化
        System.out.println("第一个人的信息");
        stu1.getInfo("张三","男",18,80);//调用方法get获取stu1的信息
        stu1.showInfo();//调用方法show输出stu1的信息
        System.out.println("第二个人信息:");
        Student stu2 =new Student("王五","男 ", 20,65);//定义和实例化对象stu2,并初始化stu2的学生信息
        stu2.showInfo();//调用方法showInFo

    }

}

创建类Student和对象