简体   繁体   English

如何在 OO 设计中表示这一点

[英]How to represent this in OO design

A type has many subtypes.

A subtype is also a type.

How to represent these two statements in Object oriented design?如何在面向对象设计中表示这两个语句?

Class AbstractType{
}

Class Type extends AbstractType{
      List<Subtype> subtypes
}

Class Subtype extends Type{

}

That's basically the idea of subtyping/inheritance/polymorphism.这基本上是子类型/继承/多态性的想法。 Wiki .维基 Exactly how to do it depends on the language/oop model.具体怎么做取决于语言/oop 模型。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM