Java Articles
- Java/Groovy Overloading and Null Parameters When you overload a Java method to accept different types of parameters, it can't always determine which to call when one of the inputs is null. Here's a hacky workaround.
- Java: Annotate Your Overrides Always use the Override annotation when youโre overriding a method, so the compiler will TELL you that you made a typo.