All Java Tutorials

How to fix Index 0 out of bounds for length 0 Java exception

Tag: Java

This tutorial explains how to fix Index 0 out of bounds for length 0 exception in Java

How to get the length of a 2D array in Java

Tag: Java

This tutorial shows you how to get the length of a 2D array in Java

How to serialize and deserialize a binary tree in Java

Tag: Java

Learn how to serialize and deserialize a binary tree in Java. Code examples included

How to create a singleton class in Java

Tag: Java

Learn how you can create a singleton class in Java with code examples

Java abstract class - with code examples

Tag: Java

Learn how an abstract class works and how to create one in Java

Create and use an anonymous object in Java

Tag: Java

Learn how you can create and use anonymous objects in Java

How to print an array in Java - single and multi-dimensional array

Tag: Java

A short guide on how to print a single and multi-dimensional array in Java

Java Interface vs Abstract Class - know when to use what

Tag: Java

Learn the differences between Java Interfaces and Abstract Classes in this tutorial

extends vs implements in Java

Tag: Java

Learn the differences between extends and implements and when to use each

How to initialize a generic array in Java. Code examples included

Tag: Java

Learn how to create and initialize a generic array in Java

How to parse a JSON String into an object with Java

Tag: Java

Learn how to parse a String into a JSON object using Java programming language

Java - Convert String type value into enum type tutorial

Tag: Java

Learn how to convert String type value into enum type in Java

Java - How to check if a variable or object is not null

Tag: Java

Learn how to avoid the Java NullPointerException error by checking if a variable is not null

Java args parameter simply explained

Tag: Java

Learn what is args parameter in Java main() method

Can you extend two classes in Java?

Tag: Java

A guide on how to extend two or more classes in Java

How to ignore exceptions thrown in your Java code

Tag: Java

A handy guide on how to ignore exceptions thrown when running a Java program

Creating a custom Exception class in Java

Tag: Java

Learn how to create and use a custom Exception class in Java

Creating an abstract class constructor in Java

Tag: Java

Learn if you can create an abstract class constructor in Java and when you should create one

How to declare a constant variable in Java

Tag: Java

Learn how to declare a constant variable in Java

Understanding the \\s+ regex pattern in Java

Tag: Java

A short guide on how the regex pattern \\s+ works in Java