Tagged Questions
4
votes
2answers
79 views
When “if else”/“instance of” are inevitable, how do we improve the design apart from using visitor pattern?
When we have an object hierarchy that is purely a inheritance of semantic and not of behaviors,then inevitably we need to write "instanceof" or "if/else" everywhere to do run time type checking.
E.g.
...
2
votes
2answers
109 views
Does Liskov Substitution Principle also apply to classes implementing an interface?
LSP states that classes should be substitutable for their base classes, meaning that derived and base classes should be semantically equivalent.
But does LSP also apply to classes implementing an ...
0
votes
1answer
147 views
Does Liskov Substitution Principle also apply to classes implementing interfaces?
1) Does LSP also apply to interfaces, meaning that we should be able to use a class implementing a specific interface and still get the expected behavior?
2) If that is indeed the case, then why is ...
0
votes
1answer
58 views
Is it okay to break LSP for the sake of binding?
Something tells me I might get lynched for asking this. And sorry for the long winded description in advance.
I'm working on something of a corner case in a Silverlight 4 project. Essentially what ...