在 C# 中执行此操作的最佳 OOP 模式是什么

发布于 2024-10-04 02:37:44 字数 1431 浏览 2 评论 0原文

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

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

发布评论

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

评论(2

夏雨凉 2024-10-11 02:37:44

如果你想要私有集,只需在接口中指定一个get:

  public interface IWalker 
  {
      double DistanceTravelled {get; }
  }

然后IWalker的实现者可以指定私有集:

  public class Walker : IWalker 
  {
      public double DistanceTravelled { get; private set;}
  }

If you want private set, just specify a get in the interface:

  public interface IWalker 
  {
      double DistanceTravelled {get; }
  }

the implementer of IWalker can then specify private set:

  public class Walker : IWalker 
  {
      public double DistanceTravelled { get; private set;}
  }
终难愈 2024-10-11 02:37:44

您的设计存在缺陷。接口用于描述 API 的“公共契约”,因此您想要 (a) 私有 setter 和 (b) 受保护的实现是非常奇怪的。

  • 接口级别的私有 setter 没有任何意义(如果您想要接口上只有 getter 的属性,请参阅 Mark Heaths 的回答)
  • 受保护的实现也很奇怪,因为通过实现接口,属性无论如何都是公共的。

如果您需要更多帮助,您将必须提供有关您的设计的更多信息。

There is a flaw in your design. An interface is used to describe the 'public contract' of your API, so it's very strange that you want (a) a private setter and (b) a protected implementation.

  • The private setter at the interface level does not make any sense (see Mark Heaths answer if you want a property with only a getter on the interface)
  • The protected implementation is also weird, since by implementing the interface the property is public anyway.

You will have to provide more information about your design if you need more help.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文