Tagged Questions

53
votes
17answers
2k views

Any good examples of inheriting from a concrete class?

Background: As a Java programmer, I extensively inherit (rather: implement) from interfaces, and sometimes I design abstract base classes. However, I have never really felt the need to subclass a ...
6
votes
3answers
109 views

rationale behind Java's exception hierarchy

I find Java's exception hierarchy confusing. Throwable is divided into Error and Exception, and RuntimeException inherits from Exception. Error is an unchecked exception. Why doesn't Error inherit ...
5
votes
2answers
106 views

Hierarchy violates Liskov - so what?

I am using an API that violates the Liskov substitution principle : it throws its own Exception type that extends Exception, but puts the exception message from the base class in a new ErrorCode field ...
4
votes
4answers
118 views

Inheritance and LSP Question

Apologies in advance for a long-winded question. Feedback especially appreciated here . . . In my work, we do a lot of things with date ranges (date periods, if you will). We need to take all sorts ...
3
votes
6answers
3k views

C# Interface Implementation relationship is just “Can-Do” Relationship?

Today somebody told me that interface implementation in C# is just "Can-Do" relationship, not "Is-A" relationship. This conflicts with my long-time believing in LSP(Liskov Substitution Principle). I ...
1
vote
3answers
74 views

Can I violate LSP (Liskov substitution) in this case?

I have a model abstract class which declares a List of items. The abstract has two abstract class. One in which you can add new items to the list and one that doesn't use the list at all but adheres ...
1
vote
2answers
170 views

Why declare an instance as a supertype but instantiate it as a subtype, plus Liskov Substitution Principle

I've been trying to understand the Liskov Substitution Principle for a couple of days now, and while doing some code tests with the very typical Rectangle/Square example, I created the code below, and ...
1
vote
6answers
1k views

Interface inheritance: what do you think of this: [closed]

When reviewing our codebase, I found an inheritance structure that resembles the following pattern: interface IBase { void Method1(); void Method2(); } interface IInterface2 : IBase { ...