码迷,mamicode.com
首页 > 其他好文 > 详细

static compile

时间:2019-12-10 16:52:50      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:type   main   pre   int   compile   class   ace   str   static   

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

标签:type   main   pre   int   compile   class   ace   str   static   

原文地址:https://www.cnblogs.com/chunyou128/p/12017412.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!