黑马程序员技术交流社区

标题: static问题。 [打印本页]

作者: zhouzhiming88    时间: 2015-5-21 23:48
标题: static问题。
/*
        案例:定义学生类。
*/
class Student     
{        String name;
        int age;
        static String country;
        //无参构造
        public Student(){
                System.out.println("无参构造方法");
        }

        //有参构造
    public Student(String name,int age){
                this.name=name;
                this.age=age;
                this.country=country;
         }
    public Student(String name,int age,String country){
                this.name=name;
                this.age=age;
                this.country=country;
        }
        public void show(){
                System.out.println(name+"****"+age+"****"+country);
        }
        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;
        }
}       
       
class StaticTest
{
        public static void main(String[] args)
        {
               
                //创建对象
                Student s1=new Student("林青霞",26);
                s1.show();
                Student s2=new Student("郝永亮",27,"中国");
                s1.show();
        }
}
输出的结果是过少?


作者: 大西洋    时间: 2015-5-22 00:08
林青霞****26****null
林青霞****26****中国
作者: 黯然残影    时间: 2015-5-22 21:39
林青霞****26****null 林青霞****26****中国
作者: 914360849    时间: 2015-5-22 21:42
林青霞**26****null
作者: 914360849    时间: 2015-5-22 21:44
林青霞***26****null
林青霞***26***中国
是吗?
作者: Im海洋    时间: 2015-5-22 21:44
static是静态修饰符,被static修饰的成员在本类是共享的。
作者: zhouzhiming88    时间: 2015-5-22 22:25
914360849 发表于 2015-5-22 21:44
林青霞***26****null
林青霞***26***中国
是吗?

是的:handshake
作者: zhangjnia    时间: 2015-5-22 22:31
好的不错。学习了




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2