摘要:
1、接口的定义 import "fmt" type Personer interface { SayHello() } type Student struct { } func (stu *Student)SayHello() { fmt.Println("老师好") } func main() { 阅读全文
2022年4月18日
摘要:
1、解压安装包 [root@localhost src]# tar xf tengine-2.3.3.tar.gz [root@localhost src]# 2、cd到解压目录并编译安装 [root@localhost src]# cd tengine-2.3.3 [root@localhost 阅读全文