Skip to content

Tag: java

Java aggregate same objects into one

I’m quite new into programming and got a tricky question. I got an object which has multiple parameters: Every object always has non-null number attribute as well as one of three values-field. So for example, if valueOne is not null, the other two value fields valueTwo and valueThree would be null. So h…

Method chaining between child and parent classes

So imagine we have the following. I’m trying to do this, What are the possible ways to achieve this? And what’s the best one (convention)? Answer I’ve seen at least two approaches. Make Animal generic, and use the generic type as return type: Override the method like Alex R said in his comme…