1、继承后增加新字段
type Car struct { weight int name string } type Bike struct { Car lunzi int }
不过有个问题是vscode在使用Bike实例对象时,代码自动完成功能会显示一个Car,强迫症不能忍。 2、如果不增加新字段,可以直接
type Bike Car