码迷,mamicode.com
首页 > 编程语言 > 详细

javascript函数中的实例对象、类对象、局部变量(局部函数)

时间:2014-06-25 14:32:17      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   java   color   

定义

 function Person(national,age)
        {
            this.age = age;   //实例对象,每个示例不同
            Person.national = national;    //类对象,所用实例公用
            var bb = 0;  //局部变量,外面不能访问(类似局部函数)
        }

 

调用

           var p = new Person("中国", 29);
            document.writeln("age:" + p.age);
            document.writeln("object national:" + p.national);
            document.writeln("Class national:" + Person.national);
            document.writeln("local var:" + p.bb);

            var p2 = new Person("美国", 31);
            document.writeln("</br>");
            document.writeln("age:" + p2.age);
            document.writeln("object national:" + p2.national);
            document.writeln("Class national:" + Person.national);
            document.writeln("local var:" + p2.bb);

            document.writeln("</br>");
            document.writeln("Class national:" + Person.national);
            //age:29 object national:undefined Class national:中国 local var:undefined 
            //age:31 object national:undefined Class national:美国 local var:undefined 
            //Class national:美国

 

javascript函数中的实例对象、类对象、局部变量(局部函数),布布扣,bubuko.com

javascript函数中的实例对象、类对象、局部变量(局部函数)

标签:style   class   blog   code   java   color   

原文地址:http://www.cnblogs.com/gossip/p/3806583.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!