2020
10-15
10-15
c#如何显式实现接口成员
本示例声明一个接口IDimensions和一个类Box,显式实现了接口成员GetLength和GetWidth。通过接口实例dimensions访问这些成员。interfaceIDimensions{floatGetLength();floatGetWidth();}classBox:IDimensions{floatlengthInches;floatwidthInches;Box(floatlength,floatwidth){lengthInches=length;widthInches=width;}//Explicitinterfacememberimplementation:floatIDimen...
继续阅读 >