什么是“复合模式”?

发布于 2024-10-15 03:26:45 字数 48 浏览 4 评论 0原文

有人可以解释一下并给出组合设计模式的真实示例吗?

Could anybody please explain and give a real-live example of Composite Design Pattern?

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

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

发布评论

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

评论(1

浊酒尽余欢 2024-10-22 03:26:45

当一组对象的处理方式应与同一类型的一个对象相同时,可以使用复合模式。这通常与树结构数据一起使用。下面是一个非常适合此模式的示例:

public abstract class Shape {
    public abstract void Draw();
}

public class Line : Shape {
    public override void Draw() {
        // Draw line
    }
}

public class Polygon : Shape {

    private IList<Line> lines;

    public override void Draw() {
        foreach (Shape line in lines) {
            line.Draw();
        }
    }
}

正如您所看到的,该模式使处理绘制形状的代码可以不知道绘制了多少条线。

The composite pattern can be used when a collection of objects should be treated the same way as one object of the same type. This is often used with tree-structured data. Below is an example where this pattern suits well:

public abstract class Shape {
    public abstract void Draw();
}

public class Line : Shape {
    public override void Draw() {
        // Draw line
    }
}

public class Polygon : Shape {

    private IList<Line> lines;

    public override void Draw() {
        foreach (Shape line in lines) {
            line.Draw();
        }
    }
}

As you can see, the pattern makes it possible for the code dealing with drawing shapes to be unaware of how many lines are drawn.

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