Java Packages
Java packages allow you to group classes together.
Java's Number Class
An abstract class in Java used to convert a number to other primitive number types.
Code Indentation and Code Simplicity
This one coding standard will naturally simplify your code.
Number Systems in Java
Java supports decimal, hexadecimal, octal, and binary number systems.
Java Continue Statement
Continue statements allow you to skip an iteration of a loop.
Java Break Statement
Break immediately terminates a loop's execution.
Java For-Each Loop
For-each loops allow you to execute a block of code for every item in a collection.
Java Do-While Loop
A do-while loop always executes once and then executes until a condition is false.
Java While Loop
While loops repeatably execute a block of code while a condition is met.
Java For Loop
For loops allow you to execute a block of code a fixed number of times.