Guide to UUID in Java

2021 VietMX 0

1. Overview UUID (Universally Unique Identifier), also known as GUID (Globally Unique Identifier) represents a 128-bit long value that is unique for all practical purposes. The standard representation […]

Java Timer

2021 VietMX 0

1. Timer – the Basics Timer and TimerTask are java util classes used to schedule tasks in a background thread. In a few words – TimerTask is the task to […]

Binary Numbers in Java

2021 VietMX 0

1. Introduction The binary number system uses 0s and 1s to represent numbers. Computers use binary numbers to store and perform operations on any data. […]

Comparing Objects in Java

2021 VietMX 0

1. Introduction Comparing objects is an essential feature of object-oriented programming languages. In this tutorial, we’re going look at some of the features of the […]

What is a POJO Class?

2021 VietMX 0

1. Overview In this short tutorial, we’ll investigate the definition of “Plain Old Java Object” or POJO for short. We’ll look at how a POJO compares to […]

Concrete Class in Java

2021 VietMX 0

1. Introduction In this quick guide, we’ll discuss the term “concrete class” in Java. First, we’ll define the term. Then, we’ll see how it’s different from […]

Wrapper Classes in Java

2021 VietMX 0

1. Overview As the name suggests, wrapper classes are objects encapsulating primitive Java types. Each Java primitive has a corresponding wrapper: boolean, byte, short, char, int, […]