在文档上,API显示make接受Type和可变大小的IntegerType参数。

func make(t Type, size ...IntegerType) Type

要创建一个数组,我可以传递3个参数,例如make([]int, 3, 5)
但是当我尝试制作 map make(map[int]int, 3, 5)编译时会弹出too many arguments to make(map[int]int)

这和编译器有关吗?
是否可以针对我自己的功能实现此行为?

最佳答案

编译器具有make和其他内置函数的特殊知识。

编译器针​​对make初始化的值类型强制执行允许的参数计数。编译器不会为用户定义的函数强制执行参数计数。此外,用户定义的函数不能将类型作为参数。

最好的办法是在运行时检查:

func example(a ArgType, size ...int) returnType {
    if len(size) != 2 {
       panic("expected two size values")
    }
    ...
}

10-08 12:37
查看更多