自定义包内容如下:
```go
package foo
import "fmt"
type Cat struct {
}
func (Cat) Cry() {
fmt.Println("汪汪汪")
}
func Excute(){
new(Cat).Cry();
}
```
主文件内容如下:
```go
package main
import (
"bar"
"fmt"
)
func main(){
foo.Excute()
var dog foo.Dog = new(foo.Dog)
dog.Cry()
}
```
这样调用Excute()是可以的,但是调用新建对象的Cry()是不行的,这种操作应该怎么做?
有疑问加站长微信联系(非本文作者)