7 ms·
I'm a fan of Java in some senses, but curious to here what things you discovered in the language or JVM that changed how you thought about programming
by smac8 10y ago
I'm a fan of Java in some senses, but curious to here what things you discovered in the language or JVM that changed how you thought about programming
- ysleepy 10y agoFor me it is the vastly superior tooling. * Best IDEs around. (Yes better than .net ecosystem) * JVM monitoring (Flight Control, VisualVM) * Performance Sampling/Profiling <1% perf cost * actually being cross platform (yes, mono, bla)
- threeseed 10y agoAbility to use Clojure, Scala, Freje, Groovy, Java, Javascript, Python etc all on the one platform and share libraries and objects between each other. People forget that Java has the best ecosystem of libraries bar none especially when you get into the more enterprise areas e.g. Big Data.
- gravypod 10y agoOne-and-done is my favorite way of thinking about using Java. The JVM provides the perfect, for my use case, amount of abstraction from the hardware while still allowing you to do some amazing things. There is also a huge amount of features that are supported by the JVM that Java still doesn't make use of. There is also a great JIT and garbage collector.
- smac8 10y agoYes, but I suppose this is more the JVM than the language itself. The JVM is quite convincing though, hence Clojure, Scala, etc.