找回密码
 注册

QQ登录

快捷登录

新浪微博登陆

搜索
CDD 法语助手
楼主: 大将军猴子

水区抢楼活动(结束)圣诞福袜勋章一个免费试吃名额等

13190
回复
190438
查看
  [ 复制链接 ]

新浪微博达人勋

2010-12-23 22:31:39

使用道具 举报

新浪微博达人勋

2010-12-23 22:31:47

使用道具 举报

新浪微博达人勋

2010-12-23 22:31:49

使用道具 举报

新浪微博达人勋

袜子
2010-12-23 22:31:53

使用道具 举报

新浪微博达人勋

2010-12-23 22:31:59

使用道具 举报

新浪微博达人勋

class Person
{
        private String name ;
        private int age ;
        public void setName(String name)
        {
                this.name = name ;
        }
        public void setAge(int age)
        {
                this.age = age ;
        }
        public String getName()
        {
                return this.name ;
        }
        public int getAge()
        {
                return this.age ;
        }
        public String say()
        {
                return "姓名:"+this.name+",年龄:"+this.age ;
        }
};

class Student extends Person
{
        private String school ;
        public void setSchool(String school)
        {
                this.school = school ;
        }
        public String getSchool()
        {
                return this.school ;
        }
        public String say()
        {
                return "姓名:"+this.getName()+",年龄:"+this.getAge()+",学校:"+this.school ;
        }
};
public class OODemo02
{
        public static void main(String args[])
        {
                Student s = new Student() ;
                s.setName("张三") ;
                s.setAge(30) ;
                s.setSchool("MLDN 人才培养基地") ;
                System.out.println(s.say()) ;
        }
};
2010-12-23 22:31:59

使用道具 举报

新浪微博达人勋

2010-12-23 22:32:00

使用道具 举报

新浪微博达人勋

2010-12-23 22:32:09

使用道具 举报

新浪微博达人勋

袜子
2010-12-23 22:32:11

使用道具 举报

新浪微博达人勋

2010-12-23 22:32:12

使用道具 举报

新浪微博达人勋

class A
{
};
class B
{
};
class C extends A,B
{
};
2010-12-23 22:32:21

使用道具 举报

新浪微博达人勋

袜子
2010-12-23 22:32:22

使用道具 举报

新浪微博达人勋

2010-12-23 22:32:24

使用道具 举报

新浪微博达人勋

999999999
2010-12-23 22:32:26

使用道具 举报

新浪微博达人勋

2010-12-23 22:32:28

使用道具 举报

高级模式
B Color Image Link Quote Code Smilies

本版积分规则

返回顶部