码迷,mamicode.com
首页 > 编程语言 > 详细

java 类和对象基础练习1,学生信息;2种方法

时间:2016-05-17 16:00:18      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:

第一种方法;对象初始化。

package com.hanqi;
import java.lang.*;
public class student
{
    int xuehao;
    String name;
    int age;
    
    student(int xuehao,String name,int age)
    {
        this.xuehao=xuehao;
        this.name=name;
        this.age=age;
    }
    void output()
    {
        System.out.println("学号:"+xuehao+" "+"姓名:"+name+" "+"年龄:"+age);
    }
    

    public static void main(String[] args)
    {
        student s1=new student(44,"小明",21);
        s1.output();

    }

}

技术分享

 

 

 

 

第二中方法,在主类的main方法中创建多个Student类的对象,使用这些对象来测

package com.hanqi;

public class textclass {

    public static void main(String[] args) 
    
    {
        student s1 = new student(1,"小明",21);
        
        s1.output();
         student s2 = new student(2,"小红",22);
        
        s2.output();
        student s3 = new student(3,"小文",23);
        
        s3.output();
         student s4 = new student(4,"小芳",24);
        
        s4.output();

    }

}

技术分享

 

java 类和对象基础练习1,学生信息;2种方法

标签:

原文地址:http://www.cnblogs.com/zhailiming/p/5501898.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!