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函数名之前括号中的内容的主要内容,如果未能解决你的问题,请参考以下文章

golang中的Receiver has generic name问题

理解 Go 语言中的方法和接收者

Java中的参数传递

go的匿名函数结尾圆括号的含义

go语言学习-函数

GO学习笔记 - 函数名前面是否有输入参数肯定是不一样的!!