黑马程序员技术交流社区
标题:
随着面向对象的学习 小程序越来越完善了~
[打印本页]
作者:
K_LONG
时间:
2015-9-21 21:50
标题:
随着面向对象的学习 小程序越来越完善了~
学生标准类
class Demo_Student2 {
public static void main(String[] args){
Student s = new Student();
s.setName("李小龙");
s.setAge(99);
s.show();
System.out.println("==========");
Student s1 = new Student("丽达" ,98);
s1.show();
}
}
class Student {
private String name ;
private int age ;
public Student(){}
public Student(String name,int age){
this.name = name ;
this.age = age ;
}
public void setName(String name){
this.name = name ;
}
public String getName(){
return name ;
}
public void setAge(int age){
this.age = age;
}
public int getAge(){
return age ;
}
public void show(){
System.out.println("我的字是"+name+"..."+"年龄是"+age);
}
}
复制代码
作者:
猫是点点
时间:
2015-9-21 22:25
顶一个,么么哒
作者:
outxf003
时间:
2015-9-21 23:06
不错!我们最近也在学
作者:
K_LONG
时间:
2015-9-30 10:07
猫是点点 发表于 2015-9-21 22:25
顶一个,么么哒
{:3_53:} 一起加油啊哈~
作者:
K_LONG
时间:
2015-9-30 10:08
outxf003 发表于 2015-9-21 23:06
不错!我们最近也在学
一起加油 好好学习
作者:
迷茫不堪的年纪
时间:
2015-9-30 17:29
输出内容应该是, 我的名字是李小龙,年龄是99 我的名字是丽达,年龄是98
不明白的是 ... 代表的意思是?
还有就是因为你的是汉字,如果是 李小龙:99 的话 ,可以加个函数的输出冒号, 呵呵
作者:
斯文阿昊
时间:
2015-9-30 19:00
我也学到这了,一起加油
作者:
syusouki
时间:
2015-9-30 19:03
继续加油,继续努力
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2