标签: c go
我已经熟悉C而且我一直致力于提高我的Golang技能。任何人都知道如何在Golang中创建一些让人想起虚空*的东西吗?
例如:
struct Node { void *data; struct Node *next; struct Node *prev; }
答案 0 :(得分:0)
您必须使用空接口(interface {}),并将其修改为您想要的。 (Source)。这称为空接口,它可以包含任何类型。
interface {}