IntelliJ IDEA如何實(shí)現(xiàn)接口

2018-10-16 13:43 更新

IntelliJ IDEA 實(shí)現(xiàn)接口

如果在 IntelliJ IDEA 中的一個(gè)類被聲明為實(shí)現(xiàn)某個(gè)接口或者使用抽象方法來(lái)擴(kuò)展一個(gè)類,那么它必須實(shí)現(xiàn)這種接口或類的方法。IntelliJ IDEA 創(chuàng)建已實(shí)現(xiàn)的方法的存根,并使用基元類型的默認(rèn)返回值和對(duì)象的 null 值。

IntelliJ IDEA 實(shí)現(xiàn)接口的方法

IntelliJ IDEA 要實(shí)現(xiàn)接口或抽象類的方法,請(qǐng)按照下列步驟操作:

  1. 執(zhí)行以下操作之一:
    • 在主菜單上選擇代碼| 實(shí)現(xiàn)方法。
    • 按 Ctrl+I
    • 右鍵單擊編輯器,在上下文菜單上選擇 "生成",或按 Alt+Insert,然后選擇“實(shí)現(xiàn)方法”。
      將出現(xiàn) "選擇要實(shí)現(xiàn)的方法" 對(duì)話框,其中顯示了類和接口的列表以及可實(shí)現(xiàn)的方法。
  2. 選擇一個(gè)或多個(gè)要實(shí)現(xiàn)的方法。對(duì)于多個(gè)選擇,使用 Ctrl 和 Shift 鍵。
  3. 如有必要,請(qǐng)選中 "復(fù)制 javadoc" 復(fù)選框,從實(shí)現(xiàn)的抽象方法接口 (如果有) 中插入 javadoc 注釋。
  4. 點(diǎn)擊“確定”。

IntelliJ IDEA 更改方法體

負(fù)責(zé)實(shí)現(xiàn)方法的文件模板(實(shí)現(xiàn)的方法體)從“文件頭”接受預(yù)定義的模板變量:文件| 設(shè)置或 IntelliJ IDEA | 首選項(xiàng)-編輯-文件和代碼模板-代碼-文件頭部(File | Settings 或 IntelliJ IDEA | Preferences - Editor - File and Code Templates - Code - File Header)例如:${USER},${DATE}等等。

例如,考慮以下文件模板:

#if ( $RETURN_TYPE != "void" )return $DEFAULT_RETURN_VALUE;#end
// TODO ($USER, $DATE):To change the body of an implemented method, use File | Settings - Editor -  File and Code Templates.

如果實(shí)現(xiàn)的接口包含兩個(gè)方法,則該模板將擴(kuò)展為以下代碼:

@Override
public void hunt() {
// TODO (wombat, 9/21/12): To change the body of an implemented method, use File | Settings - Editor -  File and Code Templates.
}
@Override
public String sniff() {
return null;  // TODO (wombat, 9/21/12): To change body of implemented methods use File | Settings - Editor - File and Code Templates.
            }
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)