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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

学生标准类

  1. class Demo_Student2 {
  2.         public static void main(String[] args){
  3.                 Student s = new Student();
  4.                 s.setName("李小龙");
  5.                 s.setAge(99);
  6.                
  7.                 s.show();

  8.                 System.out.println("==========");
  9.                
  10.                 Student s1 = new Student("丽达" ,98);

  11.                 s1.show();
  12.         }
  13. }

  14. class Student {
  15.         private String name ;
  16.         private int age ;

  17.         public Student(){}

  18.         public Student(String name,int age){
  19.                 this.name = name ;
  20.                 this.age = age ;
  21.         }

  22.         public void setName(String name){
  23.                 this.name = name ;
  24.         }

  25.         public String getName(){
  26.                 return name ;
  27.         }

  28.         public void setAge(int age){
  29.                 this.age = age;
  30.         }

  31.         public int getAge(){
  32.                 return age ;
  33.         }

  34.         public  void show(){
  35.                 System.out.println("我的字是"+name+"..."+"年龄是"+age);
  36.         }
  37. }
复制代码

7 个回复

倒序浏览
顶一个,么么哒
回复 使用道具 举报
不错!我们最近也在学
回复 使用道具 举报

{:3_53:} 一起加油啊哈~
回复 使用道具 举报
outxf003 发表于 2015-9-21 23:06
不错!我们最近也在学

一起加油 好好学习
回复 使用道具 举报
输出内容应该是, 我的名字是李小龙,年龄是99  我的名字是丽达,年龄是98
不明白的是  ...  代表的意思是?
还有就是因为你的是汉字,如果是  李小龙:99  的话 ,可以加个函数的输出冒号, 呵呵
回复 使用道具 举报
我也学到这了,一起加油
回复 使用道具 举报
继续加油,继续努力
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马