Example Function that takes an interface type as value and pointer?
Example
package main
import "fmt"
type Showprice interface {
display(int)
}
func display(s Showprice, price int) {
s.display(price)
}
type Car struct {
Price int
}
func (c Car) display(price int) {
c.Price = price
}
type Bike struct {
Price int
}
func (b *Bike) display(price int) {
b.Price = price
}
func main() {
ca := Car{Price:2000}
bi := Bike{Price:400}
display(ca, 3000)
display(&bi, 600)
fmt.Println("Car:",ca.Price)
fmt.Println("Bike:",bi.Price)
}
Output
Car: 2000
Bike: 600
Most Helpful This Week
How to include and execute HTML template?
How to check if a string contains a substring in Golang?
The return values of a function can be named in Golang
How to set, get, and list environment variables?
Regular expression to extract text between square brackets
How to read names of all files and folders in current directory?