Golang中有没有指向类型的类型

fghydx · · 1151 次点击
指向类型的类型是什么意思0.0
#1
更多评论
指向类型的类型就是泛型 ```go func New[T any]() T { var t T return t } ```
#2