2016年9月14日

Go基础:接口相关

摘要: // interface相关 package main import ( "fmt" "math" ) // 接口,定义了method // 该接口类型的值必须实现里面定义的method type Abser interface{ Abs() float64 } type MyFloat float 阅读全文

posted @ 2016-09-14 11:25 荆南山砍柴人 阅读(129) 评论(0) 推荐(0)

导航