1,接口内的成员都是PUBLIC的,已默认,不能写明PUBLIC。2,接口不能有字段,可以有属性但不能实现。如: interface IShape { void func(); int Code { set; //不可以写成实现,也无法写实现,因为接口内不能有字段,故没法写成如set{ _code = Value} get; } }