当我想在另一个结构中嵌入一个结构时,我应该使用指针还是值?例如type Job struct { Command string *log.Logger}或者type Job struct { Command string log.Logger} 查看完整描述