真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

代碼注釋的副作用有哪些

本篇內(nèi)容介紹了“代碼注釋的副作用有哪些”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

公司主營業(yè)務(wù):成都網(wǎng)站設(shè)計、成都網(wǎng)站建設(shè)、移動網(wǎng)站開發(fā)等業(yè)務(wù)。幫助企業(yè)客戶真正實現(xiàn)互聯(lián)網(wǎng)宣傳,提高企業(yè)的競爭能力。創(chuàng)新互聯(lián)是一支青春激揚、勤奮敬業(yè)、活力青春激揚、勤奮敬業(yè)、活力澎湃、和諧高效的團隊。公司秉承以“開放、自由、嚴(yán)謹(jǐn)、自律”為核心的企業(yè)文化,感謝他們對我們的高要求,感謝他們從不同領(lǐng)域給我們帶來的挑戰(zhàn),讓我們激情的團隊有機會用頭腦與智慧不斷的給客戶帶來驚喜。創(chuàng)新互聯(lián)推出鳳陽免費做網(wǎng)站回饋大家。

代碼注釋 vs 代碼文檔

  1. 代碼注釋包含代碼文檔(類,方法,屬性,常量描述)

  2. 代碼文檔必要,非代碼文檔非必要

代碼注釋的使用場景

  1. 新同學(xué)上手,快速把握脈絡(luò)。

  2. 復(fù)用方法時存疑,快速查詢注釋避免方法副作用。

  3. 回顧代碼實現(xiàn),還原原始實現(xiàn)意圖。

  4. 專制不服管教兒童,毀滅技術(shù)信仰。(定義模糊,可用于指鹿為馬)

代碼注釋的副作用

  1. 好代碼 > 爛代碼 + 注釋(影響代碼整潔)

  2. 攜帶歷史包袱(歷史TODO,歷史背景細(xì)節(jié)) => 不敢刪

  3. 無標(biāo)準(zhǔn),無法量化,無法評估(個體差異大,強行推廣,易影響開發(fā)效率,推行代碼注釋到不看代碼注釋)

  4. 可能導(dǎo)致團隊陷入不思代碼結(jié)構(gòu)設(shè)計的混沌狀態(tài)

代碼注釋示例

def fetch_bigtable_rows(big_table, keys, other_silly_variable=None):
    """Fetches rows from a Bigtable.

    Retrieves rows pertaining to the given keys from the Table instance
    represented by big_table.  Silly things may happen if
    other_silly_variable is not None.

    Args:
        big_table: An open Bigtable Table instance.
        keys: A sequence of strings representing the key of each table row
            to fetch.
        other_silly_variable: Another optional variable, that has a much
            longer name than the other args, and which does nothing.

    Returns:
        A dict mapping keys to the corresponding table row data
        fetched. Each row is represented as a tuple of strings. For
        example:

        {'Serak': ('Rigel VII', 'Preparer'),
         'Zim': ('Irk', 'Invader'),
         'Lrrr': ('Omicron Persei 8', 'Emperor')}

        If a key from the keys argument is missing from the dictionary,
        then that row was not found in the table.

    Raises:
        IOError: An error occurred accessing the bigtable.Table object.
    """
    pass
    /**
     * Tests if the specified object is a key in this table.
     *
     * @param  key possible key
     * @return {@code true} if and only if the specified object
     *         is a key in this table, as determined by the
     *         {@code equals} method; {@code false} otherwise
     * @throws NullPointerException if the specified key is null
     */
    public boolean containsKey(Object key) {
        return get(key) != null;
    }

代碼注釋的個人建議

  1. 控制注釋粒度(一般到代碼文檔級別即可,當(dāng)你需要細(xì)粒度注釋時,先考慮這段邏輯是否改抽出來寫)

  2. 明晰注釋作用域(描述一行代碼,描述一個Loop)

  3. 注釋不留包袱(歷史背景信息,未處理TODO,保持基線文檔級別的代碼注釋)

  4. 作為復(fù)雜邏輯的補充解釋(中間結(jié)果格式示例,為什么捕獲異常,為什么不)

  5. 理解代碼注釋的目標(biāo),可讀,提效(換位思考)

代碼注釋共識如何達成?

  1. 腦暴

  2. 試行

  3. 階段回收意見,案例分享(去差異化)

“代碼注釋的副作用有哪些”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!


當(dāng)前名稱:代碼注釋的副作用有哪些
本文來源:http://weahome.cn/article/ippgsh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部