You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mop/misc/in.go

31 lines
601 B

// Copyright (c) 2013 by Michael Dvorkin. All Rights Reserved.
//=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
package main
import (
`fmt`
`reflect`
)
type Formatter struct {
entity interface{}
}
type Dog struct {
name string
}
func (self *Formatter) Initialize(e interface{}) *Formatter {
self.entity = e
fmt.Printf("[%v]\n", reflect.TypeOf(e).String())
return self
}
func main() {
str := `hello`
f1 := new(Formatter).Initialize(str)
dog := new(Dog)
dog.name = `Google`
f2 := new(Formatter).Initialize(dog)
fmt.Printf("[%v] [%v]\n", f1, f2)
}