Golang : Implementing class(object-oriented programming style)
If you are used to ways of doing things in Java or C++, such as declaring class and assigning different methods to the class. Golang has a unique way of implementing class with the type interface. This code example below demonstrate how to declare classes and assign methods to the classes.
package main
import (
"fmt"
)
type SayHelloIntFace interface {
SayHello()
}
type Person struct{}
// this method is tied to Person class
func (person Person) SayHello() {
fmt.Printf("Hello!")
}
type Dog struct{}
// this method is tied to Dog class
func (dog Dog) SayHello() {
fmt.Printf("woof! woof!")
}
func greeting(i SayHelloIntFace) {
i.SayHello()
}
func main() {
// instantiate objects
person := Person{}
dog := Dog{}
var i SayHelloIntFace
fmt.Println("\nPerson : ")
i = person
greeting(i)
fmt.Println("\n\nDog : ")
i = dog
greeting(i)
}
Output :
Person :
Hello!
Dog :
woof! woof!
Hope you may find this tutorial useful. Good luck in learning and using Golang for developing your website or application!
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+7.3k SSL : How to check if current certificate is sha1 or sha2 from command line
+9.6k Golang : Resumable upload to Google Drive(RESTful) example
+13.2k Golang : How to get year, month and day?
+6.3k PHP : Shuffle to display different content or advertisement
+9.9k Golang : How to profile or log time spend on execution?
+6.5k Golang : Reverse by word
+4.1k Javascript : How to show different content with noscript?
+22.6k Golang : Gorilla mux routing example
+37.1k Upload multiple files with Go
+10k Golang : cannot assign type int to value (type uint8) in range error
+19k Golang : Get RGBA values of each image pixel
+22.3k Generate checksum for a file in Go