This may not be a actual question, but I just asked it for the sake of gaining some valuable added knowledge. I have come across this many times(as in reading many articles and blogs) that once a person becomes an expert in a particular programming language, they have the tendency to optimize their code in whatever application they built by seeing how the minutest details are implemented by seeing the compiler code of each built in class they use for developing the application. But I have seen no example of such a situation. Can anyone please suggest any or give a snippet. I am quite good at Java so if any such optimization example exists in Java could anyone please write a code snippet.
If not I don’t mind for any prog. language as the question encompasses almost the presently used ones.
This may not be a actual question, but I just asked it for the
Share
Actually I would say the opposite, instead you are more likely to see
I suggest you read the code in the
java.lang.*,java.util.*andjava.util.concurent.*These are widely used and expertly optimised for Java. If you are assuming that complicated or obtuse code is more “expert” you are likely to be disappointed. 😉