AdSense

網頁

2022/12/6

Visual Studio Code Go 跳轉到方法實作的介面

VS Code Go快速跳到方法實作的介面方式如下。


在方法名稱上按快速鍵macOS:Command ⌘ + F12(Windows:Ctrl+F12)或點選滑鼠右鍵開啟選單,選擇[Go to Implemenations]即可跳到方法實作的介面。

例如下面把游標移到Employee.Do()上選擇[Go to Implemenations]即可跳到介面Action.Do();反之亦然。

type Action interface {
    Do()
}

type Employee struct {...}

func (emp *Employee) Do() {...}


沒有留言:

AdSense