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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 陈延真 中级黑马   /  2013-5-16 11:56  /  1791 人查看  /  7 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 陈延真 于 2013-5-30 21:30 编辑

public class Test1
{
        public static void main(String[] args)
        {
                Animal a = new Dog("ok dog");
                a.show();
//                a.setName("ok dog");
                a.getName();
               
                /*Dog d = new Dog();
                System.out.println(d.getName());
               
                Dog d2 = new Dog("ok dog");
                System.out.println(d2.getName());
                d2.show();
                d2.method();*/
        }
}
abstract class Animal
{
        private String name;
        public final int x = 10;
        public Animal()
        {
                System.out.println("Animal");
        }
        public Animal(String name)
        {
                this.name = name;
        }
        public void setName(String name)
        {
                this.name = name;
        }
        public String getName()
        {
                return name;
        }
        public void show()
        {
                System.out.println("show");
        }
        public abstract void method();

}
class Dog extends Animal
{
        public Dog()
        {
                super();
                System.out.println("dog");
        }
        public Dog(String name)
        {
                super(name);
        }
        public void show()
        {
                System.out.println("show");
        }
        public void method()
        {
                System.out.println("dog method");
        }
}

评分

参与人数 1技术分 +1 收起 理由
Sword + 1 亲,你的代码应该加上注释,以后注意.

查看全部评分

7 个回复

倒序浏览
你虽然给他赋值了 但是你没有输出 吧
class Test3 {
       
                public static void main(String[] args)
                {
                        Animal a = new Dog("ok dog");
                        a.show();
//                      
                     System.out.println(a.getName());
                      
                }
        }
        abstract class Animal
        {
                private String name;
                public final int x = 10;
                public Animal()
                {
                        System.out.println("Animal");
                }
                public Animal(String name)
                {
                        this.name = name;
                }
                public void setName(String name)
                {
                        this.name = name;
                }
                public String getName()
                {
                        return name;
                }
                public void show()
                {
                        System.out.println("showfu");
                }
                public abstract void method();

        }
        class Dog extends Animal
        {
                public Dog()
                {
                        super();
                        System.out.println("dog");
                }
                public Dog(String name)
                {
                        super(name);
                }
                public void show()
                {
                        System.out.println("show");
                }
                public void method()
                {
                        System.out.println("dog method");
                }
        }
       
回复 使用道具 举报
没注释看着真辛苦
回复 使用道具 举报
沈艳南 发表于 2013-5-16 12:07
你虽然给他赋值了 但是你没有输出 吧
class Test3 {
       

亲,代码加注释啊,这样别人才容易看懂
回复 使用道具 举报
多态是比较讨厌的,尤其是分析输出内容的时候。
回复 使用道具 举报
class Test5 {
        
        public static void main(String[] args)
        {
                Animal a = new Dog("ok dog");
                a.show();
//              //此处改为输出语句就可以了   输出你赋值的名字.
             System.out.println(a.getName());
               
        }
}
abstract class Animal
{
        private String name;
        public final int x = 10;
        public Animal()
        {
                System.out.println("Animal");
        }
        public Animal(String name)
        {
                this.name = name;
        }
        public void setName(String name)
        {
                this.name = name;
        }
        public String getName()
        {
                return name;
        }
        public void show()
        {
                System.out.println("showfu");
        }
        public abstract void method();

}
class Dog extends Animal
{
        public Dog()
        {
                super();
                System.out.println("dog");
        }
        public Dog(String name)
        {
                super(name);
        }
        public void show()
        {
                System.out.println("show");
        }
        public void method()
        {
                System.out.println("dog method");
        }
}
回复 使用道具 举报
Sword 发表于 2013-5-17 00:29
亲,代码加注释啊,这样别人才容易看懂

呵呵,谢了。下次会注意的。
回复 使用道具 举报
Sword 金牌黑马 2013-5-21 09:44:14
8#

如果问题已经解决了,那么大家请把帖子的类型改为“已解决”,谢谢合作
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马