The blog post "You Need Subtyping" argues that subtyping, despite sometimes being viewed as complex or unnecessary, is a crucial tool for writing flexible and maintainable code. It emphasizes that subtyping allows for writing generic algorithms that operate on a range of related types without needing modification for each specific type. The author illustrates this through examples using shapes and animal sounds, demonstrating how subtyping enables reusable functions that handle different subtypes without explicit type checks. The post further champions subtype polymorphism as a superior alternative to approaches like typeclasses or enums for handling diverse data types, highlighting its ability to gracefully accommodate future type extensions without altering existing code. Ultimately, the author advocates for embracing subtyping as a fundamental concept for building robust and adaptable software systems.
The blog post "You Need Subtyping" by Jean-Baptiste Mazon explores the concept of subtyping in programming languages and argues for its necessity in managing complex software systems. The author posits that subtyping, a form of polymorphism where a subtype can be used wherever its supertype is expected, is crucial for achieving code reusability and maintainability, especially as projects grow in size and complexity.
Mazon begins by illustrating the challenges of code duplication and modification that arise when dealing with similar but distinct types. He uses the example of different kinds of geometric shapes, each with unique properties and associated operations. Without subtyping, handling these variations would necessitate writing separate functions or methods for each shape type, leading to redundant code and difficulty in making global changes.
The author then introduces subtyping as a solution to this problem. Subtyping allows developers to define a common interface or supertype (e.g., "Shape") that encompasses the shared characteristics of all related types (e.g., "Circle," "Square," "Triangle"). Individual shape types can then inherit from this supertype and implement their specific properties and behaviors. This hierarchical structure enables a single function operating on the supertype ("Shape") to be applied to any of its subtypes, promoting code reuse and simplifying maintenance.
The blog post emphasizes that subtyping facilitates extensibility. Adding new shape types doesn't require modifying existing code that operates on the supertype. The new shape simply needs to inherit from the supertype and implement the required interface. This inherent flexibility makes subtyping a powerful tool for evolving software systems.
Furthermore, Mazon clarifies the distinction between subtyping and parametric polymorphism (generics). While generics provide type safety and code reuse by allowing functions to operate on various types without knowing their specific characteristics, subtyping goes further by establishing a relationship between types. This relationship allows for substitutions based on the inheritance hierarchy, a feature not available with generics alone.
The author concludes by reiterating the importance of subtyping in building robust and maintainable software. He argues that while other forms of polymorphism exist, subtyping offers a unique and essential mechanism for managing type relationships and promoting code reusability in the face of increasing complexity. He encourages developers to embrace subtyping as a valuable tool in their programming arsenal.
Summary of Comments ( 65 )
https://news.ycombinator.com/item?id=43485373
HN users generally disagreed with the premise that subtyping is needed. Several commenters argued that subtyping adds complexity, especially in larger projects, and that its benefits are often overstated. Alternatives like composition and pattern matching were suggested as potentially superior approaches. Some argued that the author conflated subtyping with polymorphism, while others pointed out that the benefits mentioned in the article, like code reuse and extensibility, could be achieved without subtyping. A few commenters discussed the specific example used in the blog post, highlighting its contrived nature and suggesting better alternatives. The overall sentiment was that subtyping is a tool, sometimes useful, but not a necessity.
The Hacker News post "You Need Subtyping" (linking to an article explaining the concept of subtyping) generated a moderate discussion with a few key points of contention and clarification.
Several commenters argued against the author's premise that subtyping is needed. One commenter suggested that the author conflates subtyping with polymorphism, arguing that while polymorphism is essential, subtyping is just one implementation, and often a problematic one. They suggested that type classes or interfaces are often a superior approach to achieving polymorphism. This commenter also pointed out potential issues with subtyping like the Liskov Substitution Principle violations and the complexities it introduces in larger codebases.
Expanding on the alternatives to subtyping, another commenter highlighted how Rust's trait system provides the benefits of polymorphism without the downsides of traditional subtyping. They explained how traits allow for ad-hoc polymorphism, a more flexible and less coupled approach than inheritance-based subtyping.
Another point of discussion revolved around the specific examples used in the original article. A commenter critiqued the overly simplistic examples, claiming they don't adequately represent real-world scenarios where the complexities and drawbacks of subtyping become more apparent. This commenter suggested that in more complex systems, the rigidity of subtyping can hinder flexibility and lead to brittle code.
Adding a nuance to the discussion, one commenter agreed that the article’s examples were simple, but argued that they effectively illustrated the core concept of subtyping. They conceded that while alternatives exist, subtyping remains a valuable tool in certain contexts.
Finally, a couple of comments offered different perspectives on the role of static vs. dynamic typing. One highlighted the importance of understanding the trade-offs between them, while another suggested that the benefits of subtyping are more readily apparent in statically typed languages.
In summary, the comments on Hacker News generally challenged the article's strong assertion that subtyping is a necessity. Many commenters pointed out alternative approaches to polymorphism, highlighted the potential downsides of subtyping, and criticized the simplicity of the examples provided in the original article. However, some commenters also defended the value of subtyping in certain contexts and emphasized the importance of understanding its trade-offs compared to other typing mechanisms.