1,接口内的成员都是PUBLIC的,已默认,不能写明PUBLIC。
2,接口不能有字段,可以有属性但不能实现。如: interface IShape { void func(); int Code { set; //不可以写成实现,也无法写实现,因为接口内不能有字段,故没法写成如set{ _code = Value} get; } }
本文共 343 字,大约阅读时间需要 1 分钟。
1,接口内的成员都是PUBLIC的,已默认,不能写明PUBLIC。
2,接口不能有字段,可以有属性但不能实现。如: interface IShape { void func(); int Code { set; //不可以写成实现,也无法写实现,因为接口内不能有字段,故没法写成如set{ _code = Value} get; } }
转载于:https://www.cnblogs.com/timeObjserver/p/5926161.html