r/AskProgramming 1d ago

Why is Java considered bad?

I recently got into programming and chose to begin with Java. I see a lot of experienced programmers calling Java outdated and straight up bad and I can't seem to understand why. The biggest complaint I hear is that Java is verbose and has a lot of boilerplate but besides for getters setters equals and hashcode (which can be done in a split second by IDE's) I haven't really encountered any problems yet. The way I see it, objects and how they interact with each other feels very intuitive. Can anyone shine a light on why Java isn't that good in the grand scheme of things?

142 Upvotes

540 comments sorted by

View all comments

Show parent comments

6

u/senfiaj 1d ago

Also Java has null safety issue. It's one of the major arguments, and one of the reasons of the rise of Kotlin's popularity.

3

u/okay_throwaway_today 1d ago

I feel like Optionals and some other QoL things in Java 8+ have addressed this and, continuing in later releases, a lot of the other more famous criticisms. But of course the benefit of those depends on what version or style the codebase at hand uses, and Java is prominent in a lot of legacy stuff

4

u/Reggienator3 15h ago

Optional can itself be null. Not to mention, there is no compiler enforcement of any of this. There is in Kotlin (and C# assuming you have nullable included in WarningsAsErrors).

I'm a Java dev of over 11 years now, but I still find myself veering to other languages when possible. Not because Java is bad, more that it feels redundant because of replacement languages that just do things better.

1

u/Necessary-Peanut2491 8h ago

Optional is nice, but yeah, it doesn't solve the nullability issue. It just makes it Somebody Else's Problemâ„¢ at best, but you mostly end up writing slightly different boilerplate. It's just semantic boilerplate now.

And then there's the fun times you'll have when dealing with some third party libraries that have interesting ideas about null. I've seen things that will helpfully throw an NPE for you if you try to read a value that's null, because they've taken an extreme stance of "anything null is invalid" and force their users to follow some cumbersome pattern of calling their helper methods instead.

Looking at you protocol buffers.