内部类代码写法
/// <summary>
/// 测试内部类代码.暂时保留
/// </summary>
public class Goods
{
private class Content : Contents
{
private int i = 11;
public int value1()
{
return i;
}
}
protected class GDestination:Destination
{
private String label;
private GDestination(string whereTo)
{
label = whereTo;
}
public string readLabel()
{
return label;
}
public Destination dest(String s)
{
return new GDestination(s);
}
public Contents cont()
{
return new Content();
}
}
}
public interface Contents
{
int value1();
}
public interface Destination
{
string readLabel();
}
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步