摘要: 接口 1. 定义: Interface类型可以定义一组方法,但是这些不需要实现。并且interface不能包含任何变量。 type example interface{ Method1(参数列表) 返回值列表 Method2(参数列表) 返回值列表 } 2.interface类型默认是一个指针 ty 阅读全文
posted @ 2019-04-11 22:29 DreamBoy_张亚飞 阅读(339) 评论(0) 推荐(0) 编辑