[Go小技巧] 如何写很酷的连贯操作?

定义连贯操作的结构体方法

package toy

type Toy struct {
	nick   string
	shape  string
	color  string
	height int
}

func (t *Toy) SetNick(nick string) *Toy {
	t.nick = nick
	return t
}
func (t *Toy) SetShape(shape string) *Toy {
	t.shape = shape
	return t
}
func (t *Toy) SetColor(color string) *Toy {
	t.color = color
	return t
}
func (t *Toy) SetHeight(height int) *Toy {
	t.height = height
	return t
}

连贯调用

package main

import "toy"

func main() {
	var t = new(toy.Toy).
		SetNick("nick").
		SetShape("dog").
		SetColor("white").
		SetHeight(10)
	_ = t
}

相关文章

什么是Go的接口? 接口可以说是一种类型,可以粗略的理解为他...
1、Golang指针 在介绍Golang指针隐式间接引用前,先简单说下...
1、概述 1.1 Protocol buffers定义 Protocol buffe...
判断文件是否存在,需要用到"os"包中的两个函数: os.Stat(...
1、编译环境 OS :Loongnix-Server Linux release 8.3 CPU指...
1、概述 Golang是一种强类型语言,虽然在代码中经常看到i:=1...