Go函数名之前括号中的内容
Posted Jason_ou2021
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Go函数名之前括号中的内容相关的知识,希望对你有一定的参考价值。
type fileLog string
func (fl fileLog) Write(data []byte) (int, error) {
file, err := os.OpenFile(string(fl), os.O_CREATE|os.O_WRONLY|os.O_APPEND, 0600)
if err != nil {
return 0, nil
}
defer file.Close()
return file.Write(data)
}
函数名称前面的括号是Go定义这些函数将在其上运行的对象的方式。所以,本质上Write
是一个类型处理程序的方法,可以使用类型处理程序的任何对象来调用fl
类似于Vue的computed, 和Vuex的mutation作用
确切地说是处理后的接收者fileLog
举个例子:
package main
import "fmt"
type person struct{
Name string
Age int
}
func (jason person) printMyInfo(){
fmt.Printf("I am %s, %d", jason.Name, jason.Age)
}
func (jason person) NextYear() person{
jason.Age++
return jason
}
func main() {
jason := person{"Jason", 26}
jason = jason.NextYear()
jason.printMyInfo()
}
结果:
I am Jason, 27
以上是关于Go函数名之前括号中的内容的主要内容,如果未能解决你的问题,请参考以下文章
我的Android进阶之旅NDK开发之在C++代码中使用Android Log打印日志,打印出C++的函数耗时以及代码片段耗时详情