Question: are there any design principles other than the Liskov Substitution Principle to consider when introducing a subclass with a subset of existing base fu
I need to sort vector of structures by a given field. To anyone who faces the same problem: I just made my own sort function and there you can pass in lambda as
//assume there is a java class call Node, and node is an array of Node for(Node i: node){ Node j = i; } Node j; for(Node i: node){ j = i; } Can some