Go 語言結構體
阿新 • • 發佈:2021-07-12
Go 語言結構體
Go 語言中陣列可以儲存同一型別的資料,但在結構體中我們可以為不同項定義不同的資料型別。
結構體是由一系列具有相同型別或不同型別的資料構成的資料集合。
結構體表示一項記錄,比如儲存圖書館的書籍記錄,每本書有以下屬性:
- Title :標題
- Author : 作者
- Subject:學科
- ID:書籍ID
定義結構體
結構體定義需要使用 type 和 struct 語句。struct 語句定義一個新的資料型別,結構體中有一個或多個成員。type 語句設定了結構體的名稱。結構體的格式如下:
type struct_variable_type struct { member definition member definition ... member definition }
一旦定義了結構體型別,它就能用於變數的宣告,語法格式如下:
variable_name := structure_variable_type {value1, value2...valuen}
或
variable_name := structure_variable_type { key1: value1, key2: value2..., keyn: valuen}
例項如下:
例項
package main import "fmt" type Books struct { title string author string subject string book_id int } func main() { // 建立一個新的結構體 fmt.Println(Books{"Go 語言", "www.runoob.com", "Go 語言教程", 6495407}) // 也可以使用 key => value 格式 fmt.Println(Books{title: "Go 語言", author: "www.runoob.com", subject: "Go 語言教程", book_id: 6495407}) // 忽略的欄位為 0 或 空 fmt.Println(Books{title: "Go 語言", author: "www.runoob.com"}) }
輸出結果為:
{Go 語言 www.runoob.com Go 語言教程 6495407}
{Go 語言 www.runoob.com Go 語言教程 6495407}
{Go 語言 www.runoob.com 0}
訪問結構體成員
如果要訪問結構體成員,需要使用點號 . 操作符,格式為:
結構體.成員名"
結構體型別變數使用 struct 關鍵字定義,例項如下:
例項
package main import "fmt" type Books struct { title string author string subject string book_id int } func main() { var Book1 Books /* 宣告 Book1 為 Books 型別 */ var Book2 Books /* 宣告 Book2 為 Books 型別 */ /* book 1 描述 */ Book1.title = "Go 語言" Book1.author = "www.runoob.com" Book1.subject = "Go 語言教程" Book1.book_id = 6495407 /* book 2 描述 */ Book2.title = "Python 教程" Book2.author = "www.runoob.com" Book2.subject = "Python 語言教程" Book2.book_id = 6495700 /* 列印 Book1 資訊 */ fmt.Printf( "Book 1 title : %s**\n**", Book1.title) fmt.Printf( "Book 1 author : %s**\n**", Book1.author) fmt.Printf( "Book 1 subject : %s**\n**", Book1.subject) fmt.Printf( "Book 1 book_id : %d**\n**", Book1.book_id) /* 列印 Book2 資訊 */ fmt.Printf( "Book 2 title : %s**\n**", Book2.title) fmt.Printf( "Book 2 author : %s**\n**", Book2.author) fmt.Printf( "Book 2 subject : %s**\n**", Book2.subject) fmt.Printf( "Book 2 book_id : %d**\n**", Book2.book_id) }
以上例項執行執行結果為:
Book 1 title : Go 語言
Book 1 author : www.runoob.com
Book 1 subject : Go 語言教程
Book 1 book_id : 6495407
Book 2 title : Python 教程
Book 2 author : www.runoob.com
Book 2 subject : Python 語言教程
Book 2 book_id : 6495700
結構體作為函式引數
你可以像其他資料型別一樣將結構體型別作為引數傳遞給函式。並以以上例項的方式訪問結構體變數:
例項
package main
import "fmt"
type Books struct {
title string
author string
subject string
book_id int
}
func main() {
var Book1 Books */\* 宣告 Book1 為 Books 型別 \*/*
var Book2 Books */\* 宣告 Book2 為 Books 型別 \*/*
/* book 1 描述 */
Book1.title = "Go 語言"
Book1.author = "www.runoob.com"
Book1.subject = "Go 語言教程"
Book1.book_id = 6495407
/* book 2 描述 */
Book2.title = "Python 教程"
Book2.author = "www.runoob.com"
Book2.subject = "Python 語言教程"
Book2.book_id = 6495700
/* 列印 Book1 資訊 */
printBook(Book1)
/* 列印 Book2 資訊 */
printBook(Book2)
}
func printBook( book Books ) {
fmt.Printf( "Book title : %s**\n**", book.title)
fmt.Printf( "Book author : %s**\n**", book.author)
fmt.Printf( "Book subject : %s**\n**", book.subject)
fmt.Printf( "Book book_id : %d**\n**", book.book_id)
}
以上例項執行執行結果為:
Book title : Go 語言
Book author : www.runoob.com
Book subject : Go 語言教程
Book book_id : 6495407
Book title : Python 教程
Book author : www.runoob.com
Book subject : Python 語言教程
Book book_id : 6495700
結構體指標
你可以定義指向結構體的指標類似於其他指標變數,格式如下:
var struct_pointer *Books
以上定義的指標變數可以儲存結構體變數的地址。檢視結構體變數地址,可以將 & 符號放置於結構體變數前:
struct_pointer = &Book1
使用結構體指標訪問結構體成員,使用 "." 操作符:
struct_pointer.title
接下來讓我們使用結構體指標重寫以上例項,程式碼如下:
例項
package main
import "fmt"
type Books struct {
title string
author string
subject string
book_id int
}
func main() {
var Book1 Books /* 宣告 Book1 為 Books 型別 */
var Book2 Books /* 宣告 Book2 為 Books 型別 */
/* book 1 描述 */
Book1.title = "Go 語言"
Book1.author = "www.runoob.com"
Book1.subject = "Go 語言教程"
Book1.book_id = 6495407
/* book 2 描述 */
Book2.title = "Python 教程"
Book2.author = "www.runoob.com"
Book2.subject = "Python 語言教程"
Book2.book_id = 6495700
/* 列印 Book1 資訊 */
printBook(&Book1)
/* 列印 Book2 資訊 */
printBook(&Book2)
}
func printBook( book *Books ) {
fmt.Printf( "Book title : %s**\n**", book.title)
fmt.Printf( "Book author : %s**\n**", book.author)
fmt.Printf( "Book subject : %s**\n**", book.subject)
fmt.Printf( "Book book_id : %d**\n**", book.book_id)
}
以上例項執行執行結果為:
Book title : Go 語言
Book author : www.runoob.com
Book subject : Go 語言教程
Book book_id : 6495407
Book title : Python 教程
Book author : www.runoob.com
Book subject : Python 語言教程
Book book_id : 6495700
本文轉自:https://www.runoob.com/go/go-structures.html
個性簽名:獨學而無友,則孤陋而寡聞!
如果覺得這篇文章對你有小小的幫助的話,記得點個“關注”哦,博主在此感謝!還可以掃碼新增好友,交流程式設計上的問題哦!
萬水千山總是情,點贊再走行不行!哈哈哈(っ•̀ω•́)っ✎⁾⁾!