Gotchas in Java Packages
Problems that you can encounter when working with Java packages.
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.