在 Golang 中,结构体是数据的简单容器。
下面显示了 Ruby 和 GoLang 中的简单 Book 类等效项。
class Book attr_reader(:title, :author) def initalize(title, author) @title = title @author = authoer end end # usage book = Book.new('Title', 'Jon Snow')
// Equivalent to `class Book` in ruby type Book struct { Title string, Author string }
Composite Literal 是一步创建初始化复合类型的语法。我们可以实例化以下类型:
这里我们将一个新的 Book 实例分配给变量 book
// Composite Literal book := Book{ Title: "Title", Author: "Author" }
较长的形式是使用new关键字。这类似于我们在 Ruby 中使用 book = Book.new(..)
实例化一个类的方式我们将使用 = 符号分配书籍的属性(即标题和作者)。
// Using the `new` keyword book := new(Book) book.Title = "Book Title" book.Author = "John Snow"
注意到我们在第一个示例中使用了符号 := 吗?
它是声明变量并为其赋值的以下详细方式的语法糖。
// Without Short Virable Declaration // Example 1 var book Book // Declare variable `book` of type `Book` book.Title = "Book Title" // Assign the value to book variable book.Author = "John Snow" // Example 2 var count int count = 20
当我们需要时,我们还可以使用工厂模式来简化结构体的初始化:
假设我们希望将书名和作者标记的每个第一个字符大写。
// Factory Function func NewBook(title string, author string) Book { return Book{ Title: titlelise(title), // default logic to "titlelise" Author: titlelist(author) } } func titlelise(str string) { caser := cases.Title(lanaguage.English) return caser.String(str) }
在 Ruby 中,我们只需在类中定义一个函数。在这里,我们定义一个名为 to_string() 的函数来打印书名作者。
class Book attr_reader(:title, :author) def initalize(title, author) @title = title @author = authoer end # new function we added def to_string() put "#{title} by #{string}" end end
在 GoLang 中,我们通过将结构传递给函数来“附加”函数。
// Equivalent to `class Book` in ruby type Book struct { Title string, Author string } // Attaching the function to the `struct` func (book Book) ToString() string { return fmt.Sprintf("%s by %s", book.Title, book.Author) } // Usage book := Book{ Title: "Title", Author: "Author" } book.ToString() // => Title by Author
解释:
func (book Book) ToString() string
代币 | 描述 |
---|---|
函数 | 函数关键字 |
(书本) | 将函数附加到 Book 结构类型 - book:用于访问函数内结构的变量 - Book:结构的类型 |
ToString() | 函数名称 |
细绳 | 函数的返回类型 |
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3