您如何在Go中表达“空”值?type Node struct { next *Node data interface{}}我想说return &Node{ data: NULL, next: NULL } 查看完整描述