91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

JavaScript?中怎樣創建私有成員

發布時間:2021-12-13 20:50:56 來源:億速云 閱讀:169 作者:柒染 欄目:開發技術

JavaScript 中怎樣創建私有成員,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

前言:

面向對象編程語言中的 private 關鍵字是一個訪問修飾符,可用于使屬性和方法只能在聲明的類中訪問。這使得隱藏底層邏輯變得容易,這些底層邏輯應該被隱藏起來,并且不應該與類的外部交互。

但是如何在 JavaScript 中實現類似的功能呢? 沒有保留關鍵字 private ,但在新的標準中 JavaScript 有自己的方法來創建類私有成員,但目前還處于 ES2020 試驗草案中,并且語法比較奇怪,以 # 作為前綴。下面介紹幾種在 JavaScript 代碼中實現私有屬性和方法的方式。

1.使用閉包

使用閉包可以使用私有屬性或者方法的封裝。利用閉包可以訪問外部函數的變量特征。

如下代碼片段:

function MyProfile() {
    const myTitle = "DevPoint";

    return {
        getTitle: function () {
            return myTitle;
        },
    };
}
const myProfile = MyProfile();
console.log(myProfile.getTitle()); // DevPoint

這可以轉化為將最頂層的自調用函數調用分配給一個變量,并且只用函數返回來公開它的一些內部函數:

const ButtonCreator = (function () {
    const properties = {
        width: 100,
        height: 50,
    };

    const getWidth = () => properties.width;
    const getHeight = () => properties.height;
    const setWidth = (width) => (properties.width = width);
    const setHeight = (height) => (properties.height = height);

    return function (width, height) {
        properties.width = width;
        properties.height = height;

        return {
            getWidth,
            getHeight,
            setWidth,
            setHeight,
        };
    };
})();
const button = new ButtonCreator(600, 360);
console.log(button.getHeight()); // 360

2.使用 ES6 類

為了使代碼更類似于 OOP 方法,可以使用 ES6 中引入的 class 關鍵字。要使屬性和方法私有,可以在類之外定義它們。

就對上面的 ButtonCreator 的例子使用 class 進行重構:

const properties = {
    width: 100,
    height: 50,
};

class ButtonCreator {
    constructor(width, height) {
        properties.width = width;
        properties.height = height;
    }

    getWidth = () => properties.width;
    getHeight = () => properties.height;
    setWidth = (width) => (properties.width = width);
    setHeight = (height) => (properties.height = height);
}
const button = new ButtonCreator(600, 360);
console.log(button.getHeight()); // 360

現在假設屬性是公共的,但想在私有方法中使用它們,其中上下文指向 ButtonCreator,可以通過以下方式實現它:

const privates = {
    calculateWidth() {
        return this.width;
    },
};

class ButtonCreator {
    constructor(width, height) {
        this.width = width;
        this.height = height;
    }

    getWidth = () => privates.calculateWidth.call(this);
    getHeight = () => this.height;
    setWidth = (width) => (this.width = width);
    setHeight = (height) => (this.height = height);
}
const button = new ButtonCreator(600, 360);
console.log(button.getHeight()); // 360

上面的代碼使用了 Function.prototype.call,它用于調用具有給定上下文的函數。在例子中,使用 ButtonCreator 類的上下文。

如果私有函數也需要參數,可以將它們作為附加參數傳遞以調用:

const privates = {
    calculateWidth(percent) {
        return this.width * percent;
    },
};

class ButtonCreator {
    constructor(width, height) {
        this.width = width;
        this.height = height;
    }

    getWidth = () => privates.calculateWidth.call(this, 0.1);
    getHeight = () => this.height;
    setWidth = (width) => (this.width = width);
    setHeight = (height) => (this.height = height);
}
const button = new ButtonCreator(600, 360);
console.log(button.getWidth()); // 60

3.使用 ES2020 提案

還處于 ES2020 試驗草案中,引入了私有方法或者屬性的定義,語法比較奇怪,以 # 作為前綴。

class ButtonCreator {
    #width;
    #height;
    constructor(width, height) {
        this.#width = width;
        this.#height = height;
    }
    // 私有方法
    #calculateWidth() {
        return this.#width;
    }

    getWidth = () => this.#calculateWidth();
    getHeight = () => this.#height;
    setWidth = (width) => (this.#width = width);
    setHeight = (height) => (this.#height = height);
}
const button = new ButtonCreator(600, 360);
console.log(button.width); // undefined
console.log(button.getWidth()); // 600

4.使用 WeakMap

這種方法建立在閉包方法之上,使用作用域變量方法創建一個私有 WeakMap,然后使用該 WeakMap 檢索與此相關的私有數據。這比作用域變量方法更快,因為所有實例都可以共享一個 WeakMap,所以不需要每次創建實例時都重新創建方法。

const ButtonCreator = (function () {
    const privateProps = new WeakMap();
    class ButtonCreator {
        constructor(width, height, name) {
            this.name = name; // 公共屬性
            privateProps.set(this, {
                width, // 私有屬性
                height, // 私有屬性
                calculateWidth: () => privateProps.get(this).width, // 私有方法
            });
        }

        getWidth = () => privateProps.get(this).calculateWidth();
        getHeight = () => privateProps.get(this).height;
    }
    return ButtonCreator;
})();
const button = new ButtonCreator(600, 360);
console.log(button.width); // undefined
console.log(button.getWidth()); // 600

這種方式對于私有方法的使用有點別扭。

5.使用 TypeScript

可以將 TypeScript 用作 JavaScript 的一種風格,可以使用 private 關鍵字從面向對象的語言中真正重新創建功能。

class ButtonCreator {
    private width: number;
    private height: number;
    constructor(width: number, height: number) {
        this.width = width;
        this.height = height;
    }
    private calculateWidth() {
        return this.width;
    }
    public getWidth() {
        return this.calculateWidth();
    }
    public getHeight() {
        return this.height;
    }
}
const button = new ButtonCreator(600, 360);

console.log(button.getWidth()); // 600
console.log(button.width); // error TS2341: Property 'width' is private and only accessible within class 'ButtonCreator'.

看完上述內容,你們掌握JavaScript 中怎樣創建私有成員的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

万盛区| 和平区| 绵竹市| 新丰县| 玉门市| 沈阳市| 含山县| 建始县| 静安区| 铜陵市| 灵宝市| 化德县| 探索| 綦江县| 宁波市| 临江市| 清涧县| 凤翔县| 镇坪县| 卫辉市| 赫章县| 阿拉善盟| 绿春县| 五大连池市| 桂平市| 饶阳县| 锡林浩特市| 苍山县| 荥经县| 石门县| 汉阴县| 香格里拉县| 崇文区| 皮山县| 罗江县| 山东省| 淮滨县| 通化市| 乐都县| 广元市| 安化县|