我的意思是像这样的纯方法类型
var Util util
type util struct { }
func (util)Help(v VM) {}
func (util)HelpMe(v VM) {}
func (util)HelpYou(v VM) {}
func (util)HelpEveryOne(v VM) {}
我在binary.BigEndian 中看到这个
// LittleEndian is the little-endian implementation of ByteOrder.
var LittleEndian littleEndian
// BigEndian is the big-endian implementation of ByteOrder.
var BigEndian bigEndian
type littleEndian struct{}
这是对您的方法进行分组的一种非常棘手的方法。所以问题是:为什么struct{}?为什么不只是int别名,是否有任何理由选择struct{}其他类型?
蛊毒传说
相关分类