Latest
Nov
18
Variables in Java
Defining and assigning variables in Java.
1 min read
Nov
15
Clean Constructor Overloading
Clean constructor overloading is done either with a primary constructor or through static factory methods.
3 min read
Nov
14
Clean Method Overloading
Clean method overloading is done by understanding the two different use cases for method overloading.
2 min read
Nov
13
Method Overloading in Java
Method overloading is when you have multiple methods with the same name, but the parameters are different.
2 min read
Nov
12
Static Methods in Java
Static methods are methods that have a single copy and cannot access instance variables or methods.
2 min read
Nov
11
Instance Methods in Java
Instance methods are a reusable block of code defined in a class.
3 min read
Nov
08
Java Static Variables, Methods, Initializers, and Classes
Static is used to have a single copy of something.
2 min read
Nov
07
When and When Not to Abbreviate Names
Don't abbreviate names unless the abbreviate name is more common than the non-abbreviate name.
2 min read
Nov
06
Scope and Good Variable Naming
Considering the scope of the variable when naming them can help you better name variables.
3 min read
Nov
05
Field and Method Hiding in Java
Field and method hiding is where you have the same field name or static method signature in a superclass and in a subclass.
2 min read