A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 分解式 中级黑马   /  2014-2-25 08:04  /  1309 人查看  /  3 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

声明类Student,包含3个成员变量:name、age、score,要求可以通过 new Student("张三", 22, 95) 的方式创建对象,并可以通过set和get方法访问成员变量


大黑马面试题。有些不懂的地方,求编程

评分

参与人数 1技术分 +1 收起 理由
zzkang0206 + 1

查看全部评分

3 个回复

倒序浏览
  1. class Stu{
  2.         private String name;
  3.         private int age;
  4.         private int score;

  5.         Stu(String name, int age, int score) {
  6.                 super();
  7.                 this.name = name;
  8.                 this.age = age;
  9.                 this.score = score;
  10.         }

  11.         public String getName() {
  12.                 return name;
  13.         }

  14.         public void setName(String name) {
  15.                 this.name = name;
  16.         }

  17.         public int getAge() {
  18.                 return age;
  19.         }

  20.         public void setAge(int age) {
  21.                 this.age = age;
  22.         }

  23.         public int getScore() {
  24.                 return score;
  25.         }

  26.         public void setScore(int score) {
  27.                 this.score = score;
  28.         }
  29.        
  30. }
复制代码

评分

参与人数 1技术分 +1 收起 理由
zzkang0206 + 1

查看全部评分

回复 使用道具 举报
给你写一个完整的代码吧,希望能帮到你:
  1. public class Student{
  2.         private String name;
  3.         private Integer age;
  4.         private Integer score;

  5.         public Student(String name, Integer age, Integer score)
  6.         {
  7.                 super();
  8.                 this.name = name;
  9.                 this.age = age;
  10.                 this.score = score;
  11.         }

  12.         public String getName(){return name;}
  13.         public void setName(String name){this.name = name;}
  14.         public Integer getAge(){return age;}
  15.         public void setAge(Integer age){this.age = age;}
  16.         public Integer getScore(){return score;}
  17.         public void setScore(Integer score) {this.score = score;}

  18.         public static void main(String[] args)
  19.         {
  20.                 //1、通过“通过 new Student("张三", 22, 95) 的方式创建对象”
  21.                 Student student = new Student("张三",22,95);
  22.                 System.out.println(student.getName());
  23.                 System.out.println(student.getAge());
  24.                 System.out.println(student.getScore());
  25.                
  26.                 //2、通过“可以通过set和get方法访问成员变量” 设置变量并且访问变量
  27.                 student.setName("李四");
  28.                 student.setAge(23);
  29.                 student.setScore(96);
  30.                
  31.                 //3、通过get访问
  32.                 System.out.println(student.getName());
  33.                 System.out.println(student.getAge());
  34.                 System.out.println(student.getScore());
  35.         }
  36. }
复制代码



评分

参与人数 1技术分 +1 收起 理由
zzkang0206 + 1

查看全部评分

回复 使用道具 举报
点个赞!!!!
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马