zoukankan      html  css  js  c++  java
  • JavaScript Patterns 5.3 Private Properties and Methods

    All object members are public in JavaScript.

    var myobj = {
    
        myprop : 1,
    
        getProp : function() {
    
            return this.myprop;
    
        }
    };
    
    console.log(myobj.myprop);
    // `myprop` is publicly accessible
    
    console.log(myobj.getProp());
    // getProp() is public too

    The same is true when you use constructor functions to create objects.

    // all members are still public:
    
    function Gadget() {
    
        this.name = 'iPod';
    
        this.stretch = function() {
    
            return 'iPad';
    
        };
    
    }
    
    var toy = new Gadget();
    
    console.log(toy.name);
    // `name` is public
    
    console.log(toy.stretch());
    // stretch() is public

    Private Members

    Implement private members using a closure.

    function Gadget() {
    
        // private member
    
        var name = 'iPod';
    
        // public function
    
        this.getName = function() {
    
            return name;
    
        };
    
    }
    
    var toy = new Gadget();
    
    // `name` is undefined, it's private
    
    console.log(toy.name);
    // undefined
    
    // public method has access to `name`
    
    console.log(toy.getName());
    // "iPod" 

    Privileged Methods

    it’s just a name given to the public methods that have access to the private members (and hence have more privileges).

    In the previous example,  getName() is a privileged method because it has “special” access to the private property name.

    Privacy Failures 

    • When you’re directly returning a private variable from a privileged method and this variable happens to be an object or array, then outside code can modify the private variable because it’s passed by reference.

    function Gadget() {
    
        // private member
    
        var specs = {
    
            screen_width : 320,
    
            screen_height : 480,
    
            color : "white"
    
        };
    
        // public  function
    
        this.getSpecs = function() {
    
            return specs;
    
        };
    
    }
    
    var toy = new Gadget(), specs = toy.getSpecs();
    
    specs.color = "black";
    
    specs.price = "free";
    
    console.dir(toy.getSpecs());

    /*

    color

    "black"

    price

    "free"

    screen_height

    480

    screen_width

    320

    */

    Solutions

    1. Principle of Least Authority (POLA):

    Return a new object containing only some of the data that could be interesting to the consumer of the object.

    1. Another  approach,  when  you  need  to  pass  all  the  data,  is  to  create  a  copy  of  the specs object, using a general-purpose object-cloning function.

    Object Literal and Privacy

    var myobj;
    // this will be the object
    
    ( function() {
    
            // private members
    
            var name = "my, oh my";
    
            // implement the public part
    
            // note -- no `var`
    
            myobj = {
    
                // privileged method
    
                getName : function() {
    
                    return name;
    
                }
            };
    
        }());
    
    var myobj = ( function() {
    
            // private members
    
            var name = "my, oh my";
    
            // implement the public part
    
            return {
    
                getName : function() {
    
                    return name;
    
                }
            };
    
        }());
    
    myobj.getName();
    // "my, oh my"

    Prototypes and Privacy

    One drawback of the private members when used with constructors is that they are recreated every time the constructor is invoked to create a new object. To solve this you can add common properties and methods to the prototype property of the constructor.

    function Gadget() {
    
        // private member
    
        var name = 'iPod';
    
        // public function
    
        this.getName = function() {
    
            return name;
    
        };
    
    }
    
    
    Gadget.prototype = ( function() {
    
            // private member
    
            var browser = "Mobile Webkit";
    
            // public prototype members
    
            return {
    
                getBrowser : function() {
    
                    return browser;
    
                }
            };
    
        }());
    
    var toy = new Gadget();
    
    console.log(toy.getName());
    // privileged "own" method
    
    console.log(toy.getBrowser());
    // privileged prototype method 

    Revealing Private Functions As Public Methods

    var myarray;
    
    (function () {
    
        var astr = "[object Array]",
    
            toString = Object.prototype.toString;
    
        // private method
    
        function isArray(a) {
    
            return toString.call(a) === astr;
    
        })
    
        // private method
    
        function indexOf(haystack, needle) {
    
            var i = 0,
    
                max = haystack.length;
    
            for (; i < max; i += 1) {
    
                if (haystack[i] === needle) {
    
                    return i;
    
                }
    
            }
    
            return−1;
    
        }
    
        myarray = {
    
            // public methods
    
            isArray: isArray,
    
            indexOf: indexOf,
    
            inArray: indexOf
    
        };
    
    }());
    
    myarray.isArray([1, 2]); // true
    
    myarray.isArray({
        0: 1
    }); // false
    
    myarray.indexOf(["a", "b", "z"], "z"); // 2
    
    myarray.inArray(["a", "b", "z"], "z"); // 2

    Now if something unexpected happens, for example, to the public indexOf(), the private indexOf() is still safe and therefore inArray()will continue to work: 

    myarray.indexOf = null;
    
    myarray.inArray(["a", "b", "z"], "z"); // 2

    References: 

    JavaScript Patterns - by Stoyan Stefanov (O`Reilly)

  • 相关阅读:
    C# WinForm在高分辨率下界面模糊问题的解决
    C# 上传文件 造成内存溢出 解决方法
    C# Linq 交集、并集、差集、去重
    Linux 命令详解./configure、make、make install 命令
    需求分析的方法(二)
    需求分析的方法(一)
    WinDbG工具实践
    windows server 2008 IIS FTP服务器配置采坑
    网站CPU占满,微信经常SSL不能建立的错误排查
    ABP 数据迁移初始化的坑
  • 原文地址:https://www.cnblogs.com/haokaibo/p/Private-Properties-and-Methods.html
Copyright © 2011-2022 走看看