Go 中的函数声明语法

以下函数声明中的 (c App) 是什么?


func (c App) SaveSettings(setting string) revel.Result {

--------------------------------------------------------------------------------------

func                                                      Keyword to define a function

     (c App)                                              ????

             SaveSettings                                 Function name

                         (setting string)                 Function arguments

                                          revel.Result    Return type


ibeautiful
浏览 169回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go