Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我听说使用大量的多态是不好的,最好的代码设计是尽可能避免多态。这是真的?
你可能听说过继承。设计原则是支持对象组合而不是类继承。
不,很多设计模式主要是使用多态来实现的。工厂模式是使用它的更常见的模式之一。
它是面向对象编程的基础部分。