39

我一直在尝试找出如何使用 mgo(Go 的 MongoDB 驱动程序),我遇到了这个结构声明:

type Something struct {
    Id bson.ObjectId "_id,omitempty"
    Name string
}

我不太了解第一个元素(Id)的语法。我知道它被声明为 type bson.ObjectId,但是字符串文字在那里做什么?

我的问题不是关于 mgo 驱动程序的功能,
而是关于这种奇怪的<name> <type> <string_literal>语法。

我在 Go 规范上找不到任何东西,我也不知道如何用谷歌搜索。

4

1 回答 1

51

语言规范的结构类型部分对此进行了解释:

字段声明后面可以跟一个可选的字符串文字 标签,它成为相应字段声明中所有字段的属性。标签通过 反射界面可见,但在其他方面被忽略。

// A struct corresponding to the TimeStamp protocol buffer.
// The tag strings define the protocol buffer field numbers.
struct {
    microsec  uint64 "field 1"
    serverIP6 uint64 "field 2"
    process   string "field 3"
}
于 2012-07-13T18:12:23.373 回答