5
votes
What is the best way to implement constants in Java ?
In Effective Java 2nd edition, it's recommended that you use enums instead of static ints for constants.
There's a good writeup on enums in Java here:
…
1
vote
Why learn Perl, Python, Ruby if the company is using C++, C# or Java as the application language?
Personally I work on a Java app, but I couldn't get by without perl for some supporting scripts.
I've got scripts to quickly flip what db I'm pointing at, scripts to run build scripts, scr …
2
votes
Is making an empty string constant worth it?
I much prefer seeing EMPTY_STRING.
It makes it english. "".equals 'reads' differently than EMPTY_STRING.equals.
…
