Category Java

Static Method in Java (with Examples)

Relationship between instance and static members in java

When a method is declared with the keyword static in its heading, it is called a static method in Java. If not, it is called non-static (or instance) method. A static method is also known as class method because, like…

Static Variable in Java (with Examples)

Diagram shows that how static variable in Java is shared across all objects and retains its value.

In this tutorial, we will learn about the static keyword, and static variable in Java with the help of various example programs. Generally, when we create a class in Java, we don’t know anything about its members until we create…

Non Access Modifiers in Java

Non-access modifiers in Java

In this tutorial, we will understand all non-access modifiers available in Java. We know that access modifiers such as private, default, protected, and public restrict the visibility (accessibility) of classes, fields, methods, or constructors in Java. These access modifiers basically…

Main Method in Java: Syntax, Example

main method in java

A main method in Java is an entry point to start the execution of a program. Every Java application has at least one class and at least one main method. Normally, an application consists of many classes and only one…