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

溫馨提示×

溫馨提示×

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

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

JavaScript代碼優化之怎么提煉函數

發布時間:2022-08-16 09:25:21 來源:億速云 閱讀:125 作者:iii 欄目:開發技術

本篇內容主要講解“JavaScript代碼優化之怎么提煉函數”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“JavaScript代碼優化之怎么提煉函數”吧!

提煉函數

what

將一段代碼提煉到一個獨立的函數中,并以這段代碼的作用命名。

where

如果需要花時間瀏覽一段代碼才能弄清楚它到底要干什么,那么這時候就應該將其提煉到一個函數中,并根據它所做的事命名。以后再讀這段代碼時,一眼就能知道這個函數的用途。

how

// ==================重構前==================
function printOwing(invoice) {
    let outstanding = 0;
    console.log("***********************");
    console.log("**** Customer Owes ****");
    console.log("***********************");
}
// ==================重構后==================
function printOwing(invoice) {
    let outstanding = 0;
    printBanner()
}
function printBanner() {
    console.log("***********************");
    console.log("**** Customer Owes ****");
    console.log("***********************");
}

函數參數化

what

以參數的形式傳入不同的值,消除重復函數

where

如果發現兩個函數邏輯非常相似, 只有一些字面量值不同, 可以將其合并成一個函數, 以參數的形式傳入不同的值, 從而消除重復。

how

// ==================重構前==================
// 點擊異常項
clickFaultsItem(item){
    this.$u.route({
        url:'xxx',
        params:{
            id: item.id,
            type: '異常'
        }
    })
}
// 點擊正常項
clickNormalItem(item){
    this.$u.route({
        url:'xxx',
        params:{
            id: item.id,
            type: '正常'
        }
    })
}
// ==================重構后==================
clickItem(id, type){
     this.$u.route({
        url:'xxx',
        params:{id, type}
    })
}

使用策略模式替換“胖”分支

what

使用策略模式替換“胖胖”的if-else或者switch-case

where

當if-else或者switch-case分支過多時可以使用策略模式將各個分支獨立出來

how

// ==================重構前==================
function getPrice(tag, originPrice) {
    // 新人價格
    if(tag === 'newUser') {
        return originPrice > 50.1 ? originPrice - 50 : originPrice
    }
    // 返場價格
    if(tag === 'back') {
         return originPrice > 200 ? originPrice - 50 : originPrice
    }
    // 活動價格
    if(tag === 'activity') {
        return originPrice > 300 ? originPrice - 100 : originPrice
    }
}
// ==================重構后==================
const priceHandler = {
    newUser(originPrice){
        return originPrice > 50.1 ? originPrice - 50 : originPrice
    },
    back(originPrice){
        return originPrice > 200 ? originPrice - 50 : originPrice
    },
    activity(originPrice){
         return originPrice > 300 ? originPrice - 100 : originPrice
    }
}
function getPrice(tag, originPrice){
    return priceHandler[tag](originPrice)
}

提煉變量

what

提煉局部變量替換表達式

where

一個表達式有可能非常復雜且難以閱讀。 這種情況下, 可以提煉出一個局部變量幫助我們將表達式分解為比較容易管理的形式 ,這樣的變量在調試時也很方便。

how

// ==================重構前==================
function price(order) {
    //價格 = 商品原價 - 數量滿減價 + 運費
    return order.quantity * order.price -
    Math.max(0, order.quantity - 500) * order.price * 0.05 +
    Math.min(order.quantity * order.price * 0.1, 100);
}
// ==================重構后==================
function price(order) {
    const basePrice = order.quantity * order.price;
    const quantityDiscount = Math.max(0, order.quantity - 500) * order.price * 0.05;
    const shipping = Math.min(basePrice * 0.1, 100);
    return basePrice - quantityDiscount + shipping;
}

內聯變量

what

用變量右側表達式消除變量,這是提煉變量的逆操作

where

當變量名字并不比表達式本身更具表現力時可以采取該方法

how

// ==================重構前==================
let basePrice = anOrder.basePrice;
return (basePrice > 1000);
// ==================重構后==================
return anOrder.basePrice > 1000

封裝變量

what

將變量封裝起來,只允許通過函數訪問

where

對于所有可變的數據, 只要它的作用域超出單個函數,就可以采用封裝變量的方法。數據被使用得越廣, 就越是值得花精力給它一個體面的封裝。

how

// ==================重構前==================
let defaultOwner = {firstName: "Martin", lastName: "Fowler"};
// 訪問
spaceship.owner = defaultOwner;
// 賦值
defaultOwner = {firstName: "Rebecca", lastName: "Parsons"};
// ==================重構后==================
function getDefaultOwner() {return defaultOwner;}
function setDefaultOwner(arg) {defaultOwner = arg;}
// 訪問
spaceship.owner = getDefaultOwner();
// 賦值
setDefaultOwner({firstName: "Rebecca", lastName: "Parsons"});

拆分階段

what

把一大段行為拆分成多個順序執行的階段

where

當看見一段代碼在同時處理兩件不同的事, 可以把它拆分成各自獨立的模塊, 因為這樣到了需要修改的時候, 就可以單獨處理每個模塊。

how

// ==================重構前==================
function priceOrder(product, quantity, shippingMethod) {
    const basePrice = product.basePrice * quantity;
    const discount = Math.max(quantity - product.discountThreshold, 0)
    * product.basePrice * product.discountRate;
    const shippingPerCase = (basePrice > shippingMethod.discountThreshold)
    ? shippingMethod.discountedFee : shippingMethod.feePerCase;
    const shippingCost = quantity * shippingPerCase;
    const price = basePrice - discount + shippingCost;
    return price;
}
/*
該例中前兩行代碼根據商品信息計算訂單中與商品相關的價格, 隨后的兩行則根據配送信息計算配送成本。
將這兩塊邏輯相對獨立后,后續如果修改價格和配送的計算邏輯則只需修改對應模塊即可。
*/
// ==================重構后==================
function priceOrder(product, quantity, shippingMethod) {
    const priceData = calculatePricingData(product, quantity);
    return applyShipping(priceData, shippingMethod);
}
// 計算商品價格
function calculatePricingData(product, quantity) {
    const basePrice = product.basePrice * quantity;
    const discount = Math.max(quantity - product.discountThreshold, 0)
    * product.basePrice * product.discountRate;
    return {basePrice, quantity, discount};
}
// 計算配送價格
function applyShipping(priceData, shippingMethod) {
    const shippingPerCase = (priceData.basePrice > shippingMethod.discountThreshold)
    ? shippingMethod.discountedFee : shippingMethod.feePerCase;
    const shippingCost = priceData.quantity * shippingPerCase;
    return priceData.basePrice - priceData.discount + shippingCost;
}

拆分循環

what

將一個循環拆分成多個循環

where

當遇到一個身兼數職的循環時可以將循環拆解,讓一個循環只做一件事情, 那就能確保每次修改時你只需要理解要修改的那塊代碼的行為就可以了。該行為可能會被質疑,因為它會迫使你執行兩次甚至多次循環,實際情況是,即使處理的列表數據更多一些,循環本身也很少成為性能瓶頸,更何況拆分出循環來通常還使一些更強大的優化手段變得可能。

how

// ==================重構前==================
const people = [
    { age: 20, salary: 10000 },
    { age: 21, salary: 15000 },
    { age: 22, salary: 18000 }
]
let youngest = people[0] ? people[0].age : Infinity;
let totalSalary = 0;
for (const p of people) {
    // 查找最年輕的人員
    if (p.age < youngest) youngest = p.age;
    // 計算總薪水
    totalSalary += p.salary;
}
console.log(`youngestAge: ${youngest}, totalSalary: ${totalSalary}`);
// ==================重構后==================
const people = [
    { age: 20, salary: 10000 },
    { age: 21, salary: 15000 },
    { age: 22, salary: 18000 }
]
let totalSalary = 0;
for (const p of people) {
    // 只計算總薪資
    totalSalary += p.salary;
}
let youngest = people[0] ? people[0].age : Infinity;
for (const p of people) {
    // 只查找最年輕的人員
    if (p.age < youngest) youngest = p.age;
} 
console.log(`youngestAge: ${youngest}, totalSalary: ${totalSalary}`);
// ==================提煉函數==================
const people = [
    { age: 20, salary: 10000 },
    { age: 21, salary: 15000 },
    { age: 22, salary: 18000 }
]
console.log(`youngestAge: ${youngestAge()}, totalSalary: ${totalSalary()}`);
function totalSalary() {
    let totalSalary = 0;
    for (const p of people) {
        totalSalary += p.salary;
    }
    return totalSalary;
} 
function youngestAge() {
    let youngest = people[0] ? people[0].age : Infinity;
    for (const p of people) {
        if (p.age < youngest) youngest = p.age;
    }
    return youngest;
}
// ==================使用工具類進一步優化==================
const people = [
    { age: 20, salary: 10000 },
    { age: 21, salary: 15000 },
    { age: 22, salary: 18000 }
]
console.log(`youngestAge: ${youngestAge()}, totalSalary: ${totalSalary()}`);
function totalSalary() {
    return people.reduce((total,p) => total + p.salary, 0);
}
function youngestAge() {
    return Math.min(...people.map(p => p.age));
}

拆分變量

what

將一個變量拆分成兩個或多個變量

where

如果變量承擔多個責任, 它就應該被替換為多個變量, 每個變量只承擔一個責任。

how

// ==================重構前==================
let temp = 2 * (height + width);
console.log(temp);
temp = height * width;
console.log(temp);
// ==================重構后==================
const perimeter = 2 * (height + width);
console.log(perimeter);
const area = height * width;
console.log(area);

分解條件表達式

what

將條件表達式提煉成函數

where

在帶有復雜條件邏輯的函數中,往往可以將原函數中對應的代碼改為調用新函數。

對于條件邏輯, 將每個分支條件分解成新函數可以帶來的好處:

  • 提高可讀性

  • 可以突出條件邏輯, 更清楚地表明每個分支的作用

  • 突出每個分支的原因

how

// ==================重構前==================
// 計算一件商品的總價,該商品在冬季和夏季的單價是不同的
if (!aDate.isBefore(plan.summerStart) && !aDate.isAfter(plan.summerEnd))
charge = quantity * plan.summerRate;
else
charge = quantity * plan.regularRate + plan.regularServiceCharge;
// ==================重構后==================
if (summer())
    charge = summerCharge();
else
    charge = regularCharge();
function summer() {
    return !aDate.isBefore(plan.summerStart) && !aDate.isAfter(plan.summerEnd);
}
function summerCharge() {
    return quantity * plan.summerRate;
}
function regularCharge() {
    return quantity * plan.regularRate + plan.regularServiceCharge;
}
// 進一步優化(使用三元運算符)
charge = summer() ? summerCharge() : regularCharge();
function summer() {
    return !aDate.isBefore(plan.summerStart) && !aDate.isAfter(plan.summerEnd);
}
function summerCharge() {
    return quantity * plan.summerRate;
}
function regularCharge() {
    return quantity * plan.regularRate + plan.regularServiceCharge;
}

合并條件表達式

what

將多個條件表達式合并

where

當發現這樣一串條件檢查: 檢查條件各不相同, 最終行為卻一致。 如果發現這種情況,就應該使用“邏輯或”和“邏輯與”將它們合并為一個條件表達式。

how

// ==================重構前==================
if (anEmployee.seniority < 2) return 0;
if (anEmployee.monthsDisabled > 12) return 0;
if (anEmployee.isPartTime) return 0;
// ==================重構后==================
if (isNotEligableForDisability()) return 0;
function isNotEligableForDisability() {
    return ((anEmployee.seniority < 2)
            || (anEmployee.monthsDisabled > 12)
            || (anEmployee.isPartTime));
}

以衛語句取代嵌套條件表達式

what

如果某個條件極其罕見,就應該單獨檢查該條件,并在該條件為真時立刻從函數中返回。 這樣的單獨檢查常常被稱為“衛語句”(guard clauses)。

where

如果使用if-else結構,你對if分支和else分支的重視是同等的。這樣的代碼結構傳遞給閱讀者的消息就是:各個分支有同樣的重要性。衛語句就不同了,它告訴閱讀者: “這種情況不是本函數的核心邏輯所關心的, 如果它真發生了,請做一些必要的整理工作,然后退出。” 為了傳遞這種信息可以使用衛語句替換嵌套結構。

how

// ==================重構前==================
function payAmount(employee) {
    let result;
    if(employee.isSeparated) {
        result = {amount: 0, reasonCode:"SEP"};
    }
    else {
        if (employee.isRetired) {
            result = {amount: 0, reasonCode: "RET"};
        }
        else {
            result = someFinalComputation();
        }
    }
    return result;
}
// ==================重構后==================
function payAmount(employee) {
    if (employee.isSeparated) return {amount: 0, reasonCode: "SEP"};
    if (employee.isRetired) return {amount: 0, reasonCode: "RET"};
    return someFinalComputation();
}

將查詢函數和修改函數分離

what

將查詢動作從修改動作中分離出來的方式

where

如果遇到一個“既有返回值又有副作用”的函數,此時可以將查詢動作從修改動作中分離出來。

how

// ==================重構前==================
function alertForMiscreant (people) {
    for (const p of people) {
        if (p === "Don") {
            setOffAlarms();
            return "Don";
        }
        if (p === "John") {
            setOffAlarms();
            return "John";}
    }
    return "";
}
// 調用方
const found = alertForMiscreant(people);
// ==================重構后==================
function findMiscreant (people) {
    for (const p of people) {
        if (p === "Don") {
            return "Don";
        }
        if (p === "John") {
            return "John";
        }
    }
    return "";
}
function alertForMiscreant (people) {
    if (findMiscreant(people) !== "") setOffAlarms();
}
// 調用方
const found = findMiscreant(people);
alertForMiscreant(people);

到此,相信大家對“JavaScript代碼優化之怎么提煉函數”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

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

AI

崇阳县| 库尔勒市| 昆明市| 柞水县| 白山市| 湖南省| 保定市| 垣曲县| 饶河县| 宁晋县| 墨江| 红河县| 荔波县| 武夷山市| 清流县| 凤庆县| 醴陵市| 阳谷县| 崇阳县| 肇庆市| 偃师市| 庐江县| 将乐县| 吉林市| 迁安市| 苍南县| 南安市| 若羌县| 理塘县| 连城县| 德惠市| 青神县| 叙永县| 洞头县| 福泉市| 安吉县| 筠连县| 本溪市| 临潭县| 龙井市| 彭阳县|