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

溫馨提示×

溫馨提示×

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

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

代碼注釋的副作用有哪些

發布時間:2021-10-13 09:21:59 來源:億速云 閱讀:106 作者:iii 欄目:編程語言

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

代碼注釋 vs 代碼文檔

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

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

代碼注釋的使用場景

  1. 新同學上手,快速把握脈絡。

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

  3. 回顧代碼實現,還原原始實現意圖。

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

代碼注釋的副作用

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

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

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

  4. 可能導致團隊陷入不思代碼結構設計的混沌狀態

代碼注釋示例

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. 控制注釋粒度(一般到代碼文檔級別即可,當你需要細粒度注釋時,先考慮這段邏輯是否改抽出來寫)

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

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

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

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

代碼注釋共識如何達成?

  1. 腦暴

  2. 試行

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

“代碼注釋的副作用有哪些”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

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

AI

藁城市| 射洪县| 册亨县| 松江区| 邛崃市| 云安县| 通城县| 富源县| 华容县| 常熟市| 黎平县| 肥东县| 益阳市| 津南区| 敦化市| 宁强县| 大安市| 武汉市| 麦盖提县| 阳春市| 温泉县| 延吉市| 贵港市| 阳山县| 邵阳县| 镇平县| 兴业县| 顺昌县| 灵寿县| 萨迦县| 大冶市| 巴林右旗| 房产| 随州市| 顺义区| 阳朔县| 兴城市| 赤水市| 永清县| 鹤山市| 庆城县|