Non-access modifier in Java

The access modifier in Java defines the access rights of class and variables, methods of that class from outside the class and package. The non-access modifier in Java changes the properties of the class and the variables and methods of that class. For example, abstract… Read More

Access modifier in Java

The access modifier in Java defines access to variables, methods of this class from other classes in the same package or in two different packages. There are four types of access modifiers in Java: public, protected, default, and private. Overview of each access modifier has… Read More

Import command in Java

Talking about import command in Java, we may ask the following questions: What does the import command in Java do? The import command in Java makes us possible to use the name of other classes in our class without having to explicitly declare the name… Read More

Learn about package in Java

In this tutorial, let’s learn how to define, the directory structure corresponding to the package in Java. Package in Java is used to group classes or interfaces that share some common points. We can define multiple packages in our project according to purpose. Package definition… Read More

Run application in Java

To create an application that can be run in Java, the first requirement is that we have to create a class that contains the main() method with an array of String parameters. For example: The main() method must satisfy the following conditions: This method must… Read More