Comment on Revisiting the principles of data-oriented programmingComments−osigurdson4y> static boolean isProlific (Map<String, Object> data) { >> return (int)data.get("books") > 100; >> }Could anything be more confusing with a large code base? Also, lots of nice key not found and invalid cast exception errors to debug with this approach. Sometimes boxing makes a material difference to performance as well.
Comments
Could anything be more confusing with a large code base? Also, lots of nice key not found and invalid cast exception errors to debug with this approach. Sometimes boxing makes a material difference to performance as well.