zoukankan      html  css  js  c++  java
  • javascript 闭包和原型 (转载)

    闭包

     function Person(firstName, lastName, age) 
        { 
            
    //私有变量: 
            var _firstName = firstName; 
            
    var _lastName = lastName; 
     
            
    //公共变量: 
            this.age = age; 
     
            
    //方法:  
     
            
    this.getName = function() 
            { 
                
    return(firstName + " " + lastName); 
            }; 
            
    this.SayHello = function() 
            { 
                alert(
    "Hello, I'm " + firstName + " " + lastName); 
            }; 
        }; 
         
        
    var BillGates = new Person("Bill""Gates"53); 
        
    var SteveJobs = new Person("Steve""Jobs"53); 
         
        BillGates.SayHello(); 
        SteveJobs.SayHello(); 
        alert(BillGates.getName() 
    + " " + BillGates.age); 
        alert(BillGates.firstName);     
    //这里不能访问到私有变量     

    原型

        function Circle(x,y,r){   
          
    this.x = x;   
         
    this.y = y;   
         
    this.r = r;   
          
    //this.prototype = null ;     /*这句代码可以看作是隐含存在的,因为javascript 中“类”的定义和函数的定义结构上没有差异,所以可以说,所有函数都隐藏有这样一个属性。*/   
       }  

       Circle.prototype.area 
    = function(){   
         
    return this.r * this.r * 3.14159 ;   
       }  

        
    var circ = new Circle(0,0,2) ;   
        alert(circ.area()) ;  
    http://www.cnblogs.com/gwazy/archive/2009/11/07/1598046.html 转载
  • 相关阅读:
    jQuery 基础一 样式篇
    javaJavaScript DOM
    linux 实用命令
    Linux下修改.bash_profile 文件改变PATH变量的值
    java 字符串截取的方法
    Telnet命令参考手册
    linux下dubbo调试 ---telnet命令
    【Spring Task】定时任务详解实例-@Scheduled
    Spring定时任务的几种实现
    SQL之case when then用法
  • 原文地址:https://www.cnblogs.com/yangzhong/p/1768658.html
Copyright © 2011-2022 走看看