什么是多重继承的解决方案 - 有机会更改保护?

发布于 2024-11-05 12:39:45 字数 545 浏览 0 评论 0原文

我需要一个多重继承的解决方案。我知道我可以使用接口。这将是一个很好的解决方案,但是......

我需要机会更改保护级别,但接口字段必须是公共的。

例如:

我有

interface IInterface_1 {
  string field_1{set;get;}
  string field_2{set;get;}
}

interface IInterface_2 {
  string field_3{set;get}
  string field_4{set;get}
}

并且在主类中我需要隐藏一些字段

class MainClass : IInterface_1, IInterface_2 {
  public string field_1{set;get;}
  private string field_2{set;get;}
  public string field_3{set;get}
  public string field_4{set;get}
}

您对此有什么解决方案吗?

I need a solution for multiple inheritance. I know that I can use interfaces. That would be good solution but...

I need opportunity to change protection level but fields of interface must be public.

For example:

I have

interface IInterface_1 {
  string field_1{set;get;}
  string field_2{set;get;}
}

interface IInterface_2 {
  string field_3{set;get}
  string field_4{set;get}
}

And in main class I need to hide some fields

class MainClass : IInterface_1, IInterface_2 {
  public string field_1{set;get;}
  private string field_2{set;get;}
  public string field_3{set;get}
  public string field_4{set;get}
}

Do you have any solution for this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

℡寂寞咖啡 2024-11-12 12:39:45

显式接口实现:

 class MainClass : IInterface_1, IInterface_2 {        
    public string field_1{get;set;}
    public string field_3{get;set;}
    public string field_4{get;set;}

    private string field2;
    string IInterface_1.field_2 {
        get {return field2;}
        set {field2 = value;}
    }
 }

Explicit interface implementation:

 class MainClass : IInterface_1, IInterface_2 {        
    public string field_1{get;set;}
    public string field_3{get;set;}
    public string field_4{get;set;}

    private string field2;
    string IInterface_1.field_2 {
        get {return field2;}
        set {field2 = value;}
    }
 }
忆沫 2024-11-12 12:39:45

[复制自罗布森的问题和他对马克答案的拒绝编辑]

我的解决方案是:

public class PermissionDeniedException : Exception {}

class MainClass : IInterface_1, IInterface_2 {
  public string field_1{set;get;}
  private string field_2{set;get;}
  string IInterface_1.field_2 {
    get {throw new PermissionDeniedException();}
    set {throw new PermissionDeniedException();}
  }
  public string field_3{set;get}
  public string field_4{set;get}
}

[Copied from Robson's question and his rejected edit to Marc's answer]

My solution is:

public class PermissionDeniedException : Exception {}

class MainClass : IInterface_1, IInterface_2 {
  public string field_1{set;get;}
  private string field_2{set;get;}
  string IInterface_1.field_2 {
    get {throw new PermissionDeniedException();}
    set {throw new PermissionDeniedException();}
  }
  public string field_3{set;get}
  public string field_4{set;get}
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文