static compile

Posted chunyou128

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了static compile相关的知识,希望对你有一定的参考价值。

package main

import "fmt"

type animal interface {
	Eat()
}

type cat struct {
}

func (c cat) Eat() {
	fmt.Println("Cat like to eat fish!")
}

var _ animal = (*cat)(nil)

func main() {
	fmt.Println("test static compile")
}

  

以上是关于static compile的主要内容,如果未能解决你的问题,请参考以下文章