Home > Article > Backend Development > Does golang have classes?
Class declaration
type Poem struct { Title string Author string intro string }This declares a class without public, protected, or private declarations.
Golang uses another approach to implement attribute access permissions: if the initial letter of the attribute is capitalized, it can be accessed in other packages, otherwise it can only be accessed in this package. The same goes for class declarations and methods.
Class method declaration
func (poem *Poem) publish() { fmt.Println("poem publish") }or
func (poem Poem) publish() { fmt.Println("poem publish") }is different from other languages. Golang declaration method is different from ordinary The method is the same, except that a statement like poem Poem is added after func. The difference between adding and not adding * is that one is passing a pointer object and the other is passing a value object. ###
The above is the detailed content of Does golang have classes?. For more information, please follow other related articles on the PHP Chinese website!