黑马程序员技术交流社区

标题: 这样能行吗? [打印本页]

作者: 刘建华    时间: 2015-1-8 12:45
标题: 这样能行吗?
package com.itheima;
/**
声明类Student,包含3个成员变量:name、age、score,
要求可以通过 new Student("张三", 22, 95) 的方式创建对象,
并可以通过set和get方法访问成员变量
@author Administrator
*/
public class Test7
{
        //建立主函数
        public static void main(String[] args)
        {
                Student sd=new Student("张三", 22, 95);
                sd.setage(8);
                sd.show();
        }
}
class Student  //定义一个学生的类
{
        private String name;
        private int age;
        private int score;
        //set 学生的变量
        public String setname(String newname)
        {
                name=newname;
                return name;
        }
        public int setage(int newage)
        {
                age=newage;
                return age;
        }
        public int setscore(int newscore)
        {
                if(newscore>=0&newscore<=150)
                        score=newscore;
                else
                        System.out.println("分数错误");
                return score;
                       
        }
        //get 学生的变量
        public String getname()
        {
                return name;
        }
        public int getage()
        {
                return age;
        }
        public int getscore()
        {
                return score;
        }
        //学生初始数据
        Student(String name,int age,int score)
        {
        this.name = name;
        this.age = age;
        this.score = score;
        }
        //打印学生的信息
        public void show()
        {
        System.out.println("Name: " + name + ", age: "+ age  + ", score:" + score);
    }
}



作者: 446111220    时间: 2015-1-8 14:10
你的方法名比如setAge  setName这都不大写?




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2