@use JSDoc

語法

@implements {typeExpression}

概述

@implements 標籤表示符號實作介面。

@implements 標籤新增至實作介面的頂層符號 (例如,建構函式)。您不需要將 @implements 標籤新增至實作的每個成員 (例如,實作的執行個體方法)。

如果您未記錄實作中的其中一個符號,JSDoc 會自動使用介面的文件來記錄該符號。

範例

在以下範例中,TransparentColor 類別實作 Color 介面,並新增 TransparentColor#rgba 方法。

使用 @implements 標籤
/**
 * Interface for classes that represent a color.
 *
 * @interface
 */
function Color() {}

/**
 * Get the color as an array of red, green, and blue values, represented as
 * decimal numbers between 0 and 1.
 *
 * @returns {Array<number>} An array containing the red, green, and blue values,
 * in that order.
 */
Color.prototype.rgb = function() {
    throw new Error('not implemented');
};

/**
 * Class representing a color with transparency information.
 *
 * @class
 * @implements {Color}
 */
function TransparentColor() {}

// inherits the documentation from `Color#rgb`
TransparentColor.prototype.rgb = function() {
    // ...
};

/**
 * Get the color as an array of red, green, blue, and alpha values, represented
 * as decimal numbers between 0 and 1.
 *
 * @returns {Array<number>} An array containing the red, green, blue, and alpha
 * values, in that order.
 */
TransparentColor.prototype.rgba = function() {
    // ...
};