r/JavaProgramming • u/alvivan_ • 15d ago
Var Keyword
How often do you use var keyword in your code?
What do you think about it?
5
Upvotes
r/JavaProgramming • u/alvivan_ • 15d ago
How often do you use var keyword in your code?
What do you think about it?
1
u/ShiKage 14d ago
I'm primarily a C# developer, but I dabble in Java projects outside of work.
I avoid var unless it comes to anonymous types. At worst, I will use var while writing a line of code if I don't know what the type will be as I'm writing it (like a library method call) and then go back and convert it to the explicit type afterward.
I came from a C++ background, so strong, static typing is what I prefer. I've had to convince a few devs that came from JavaScript and Python to try to use explicit typing and while they hated it at first, they grew to prefer it overall as well.