Tagged Questions
6
votes
15answers
1k views
Method chaining + inheritance don't play well together?
Consider:
// member data omitted for brevity
// assume that "setAngle" needs to be implemented separately
// in Label and Image, and that Button does need to inherit
// Label, rather than, say, ...
5
votes
5answers
859 views
Method chaining + inheritance don’t play well together? (Java)
This question has been asked in a C++ context but I'm curious about Java. The concerns about virtual methods don't apply (I think), but if you have this situation:
abstract class Pet
{
private ...