Golang 结构体数组
本篇文章介绍了如何在 Golang 中创建和使用结构数组。
在 Golang 中创建结构数组
struct
在Golang中被认为是一种用户自定义类型,用于将不同类型的数据存储在一个类型中。 这个概念通常用在 OOP 中,我们使用一个类来存储多种类型的数据或它们的属性。
在 Golang 中,我们可以使用 struct
,它将存储具有一组属性的任何现实世界实体。 Golang 具有设置数组结构的功能。
例如:
type Jiyik struct {
SiteName string
tutorials []tutorial
}
type tutorial struct {
tutorialName string
tutorialId int
tutorialLanguage string
}
上面的代码显示类型 Jiyik 结构使用类型教程结构的切片,其中教程结构用作数组。 这些也可以被视为嵌套结构。
让我们尝试一个示例,展示如何在我们的代码中使用结构数组:
package main
import "fmt"
type Jiyik struct {
SiteName string
tutorials []tutorial
}
type tutorial struct {
tutorialName string
tutorialId int
tutorialLanguage string
}
func main() {
PythonTutorial := tutorial{"Introduction to Python", 10, "Python"}
JavaTutorial := tutorial{"Introduction to Java", 20, "Java"}
GOTutorial := tutorial{"Introduction to Golang", 30, "Golang"}
tutorials := []tutorial{PythonTutorial, JavaTutorial, GOTutorial}
Jiyik := Jiyik{"jiyik.com", tutorials}
fmt.Printf("The site with tutorials is %v", Jiyik)
}
上面的代码初始化了一个 struct Jiyik
,然后在 Jiyik 结构体中使用了 struct tutorial
的数组。 最后,它会打印带有教程数组的站点名称。
查看输出:
The site with tutorials is {jiyik.com [{Introduction to Python 10 Python} {Introduction to Java 20 Java} {Introduction to Golang 30 Golang}]}
相关文章
在 Golang 中使用 If-Else 和 Switch Loop Inside HTML 模板
发布时间:2023/04/27 浏览次数:65 分类:Go
-
本篇文章介绍了在 Golang 的 HTML 模板中使用 if-else 和 switch 循环。因此,只要输出是 HTML,就应该始终使用 HTML 模板包而不是文本模板。
Golang 中的零值 Nil
发布时间:2023/04/27 浏览次数:166 分类:Go
-
本篇文章介绍 nil 在 Golang 中的含义,nil 是 Go 编程语言中的零值,是众所周知且重要的预定义标识符。
Golang 中的 Lambda 表达式
发布时间:2023/04/27 浏览次数:93 分类:Go
-
本篇文章介绍如何在 Golang 中创建 lambda 表达式。Lambda 表达式似乎不存在于 Golang 中。 函数文字、lambda 函数或闭包是匿名函数的另一个名称。
在 Go 中捕获 Panics
发布时间:2023/04/27 浏览次数:66 分类:Go
-
像错误一样,Panic 发生在运行时。 换句话说,当您的 Go 程序中出现意外情况导致执行终止时,就会发生 Panics。让我们看一些例子来捕捉 Golang 中的Panics。
在 Go 中使用断言
发布时间:2023/04/27 浏览次数:181 分类:Go
-
本篇文章介绍了 assert 在 GoLang 中的使用。在 Go 语言中使用断言:GoLang 不提供对断言的任何内置支持,但我们可以使用来自 Testify API 的广泛使用的第三方包断言。
Go 中的随机数生成
发布时间:2023/04/27 浏览次数:114 分类:Go
-
本篇文章介绍如何在 Go 语言中使用随机数生成功能。Go 中的随机数生成 Go 语言为随机数生成功能提供内置支持。 内置包 math 有方法 rand(),用于随机数生成。