Java

Articles on the Java programming language.
Sep
10
Type Inference in Java

Type Inference in Java

Type inference in Java is done using the var identifier.
2 min read
Sep
09
Java Switch Expression

Java Switch Expression

Switch expressions are similar to a switch statement but are expressions instead.
3 min read
Sep
03
Constants in Java

Constants in Java

Constants are defined by a single immutable copy of a variable.
1 min read
Sep
02
Immutable Variables in Java

Immutable Variables in Java

Java's final keyword and its usages on variables.
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
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