Latest

Sep
02
Immutable Variables in Java

Immutable Variables in Java

Java's final keyword and its usages on variables.
2 min read
Aug
30
The Principle of One Operation Per Line of Code

The Principle of One Operation Per Line of Code

A line of code should do one operation.
3 min read
Aug
29
Mutable vs Immutable

Mutable vs Immutable

Mutable variables can be reassigned a value whereas immutable variables cannot be reassigned a value.
2 min read
Aug
28
Gotchas in Java Packages

Gotchas in Java Packages

Problems that you can encounter when working with Java packages.
2 min read
Aug
27
Java Packages

Java Packages

Java packages allow you to group classes together.
2 min read
Aug
26
Java's Number Class

Java's Number Class

An abstract class in Java used to convert a number to other primitive number types.
1 min read
Aug
23
Code Indentation and Code Simplicity

Code Indentation and Code Simplicity

This one coding standard will naturally simplify your code.
2 min read
Aug
16
Number Systems in Java

Number Systems in Java

Java supports decimal, hexadecimal, octal, and binary number systems.
1 min read
Aug
15
Java Continue Statement

Java Continue Statement

Continue statements allow you to skip an iteration of a loop.
1 min read
Aug
14
Java Break Statement

Java Break Statement

Break immediately terminates a loop's execution.
1 min read