结构体是由一系列具有相同类型或不同类型的数据构成的数据集合。
type Books struct {
title string
author string
subject string
book_id int
}
结构体是由一系列具有相同类型或不同类型的数据构成的数据集合。
type Books struct {
title string
author string
subject string
book_id int
}