Home > Java > javaTutorial > body text

Java Commands

WBOY
Release: 2024-08-30 15:11:07
Original
1064 people have browsed it

Java is a multi-purpose, general computer programming language that has the best amalgamation of being class-based and object-oriented. It doesn’t have a plethora of implementation dependencies too. Today, almost in every realm, we can see Java being in the picture. This language provides mainly three computing platforms viz. J2SE, J2ME, J2EE. This is one of the most popular client-server application-based programming languages with a Java Development Kit comprising of Java Runtime Environment and other utilities. It consists of Java Virtual Machine and a bytecode, making it possible for this language to get compiled and executed at any platform and any computer architecture. Java is supported by a few development environments such as Eclipse, IntelliJ, BlueJ, Netbeans, etc., but there are some basic commands which can be executed through terminal or command prompt or some syntax used in programming. In this tutorial, we are going to discuss different types of Java commands.

ADVERTISEMENT Popular Course in this category JAVA MASTERY - Specialization | 78 Course Series | 15 Mock Tests

Start Your Free Software Development Course

Web development, programming languages, Software testing & others

Basic Java Commands

The basic commands are as explained below:

  • Java –version: This is one of the very basic Java commands which is used to check the version of java installed on your machine. This is also used to ensure whether the installation and the PATH setting of variables are done rightly.
    Java Commands
  • Javac –version: This command is used to tell you the compiler version, which is responsible for compiling the source code. This also is a part of the Java Development Kit, popularly known as JDK. Java Commands
  • Whereis: This Java command is used to find the specific component within the directory. In the below case, we have taken into consideration javac.
    Java Commands
  • To execute a program once it has been converted into bytecode, we make use of Java and then the program name. In the below example, we have taken the program with the name of Hello World.
    Java Commands
  • Echo: This echo command is used in Java and is a must-know command as it helps display the data of a particular file. Generally, this is used to check the PATH variables.
    Java Commands
  • Main: As the name suggests, this is the program’s main function where the compiler first reaches and executes the portion of it.
    Java Commands
  • Public: This is an access modifier in java that is used to define what level of access will the program controls would have. Public means that the class is publically available.
    Java Commands
  • Class: It is a logical entity and often said to be the blueprint of the object. This contains functions and other data members in a single entity called class.
    Java Commands
  • Object: Everything in Java is an object as it is the only physical entity of which everything is comprised of. It is the combination of procedures and data working on the already available data.
    Java Commands
  • Static: This is a java keyword that ensures that the method of the function block can be called without making use of an object.
    Java Commands

Intermediate Java Commands

The intermediate commands are as explained below:

  • This is the java keyword used to specify that there will be no return type possible for the intended function.
    Java Commands
  • args[]: This is used to specify the arguments contained in the main function, and the [] imply the array.Java Commands
  • String: This is a pre-built Java class that is used to handle all the string related and alphabets related keywords of Java.
    Java Commands
  • System: This is a pre-built class in Java present in the default lang package, which is used to handle the standard input, standard outputs, and other stream errors.
    Java Commands
  • Out: This is the object and a static member of the system class which is used to print the message on the output path, which is generally a console or a file.
    Java Commands
  • Print: This method is used to print the contents of the program in a sequential way, and the cursor would not come to the next line.                                                                                  Java Commands
  • Println: This function is used to print the contents in a new line.
    Java Commands
  • Private: This is the access modifier in java used to define the method’s scope or function within the class only.
    Java Commands
  • Int: This is the integer datatype that is used to handle all the integer type values, and therefore a variable needs to be initialized with the int datatype.
    Java Commands
  • Double: Another datatype that is used to define the variables with the decimal values. It comes under the category of Java primitive data types used for storing double-precision values. This has a long range compared to the float variable, which is also used to define and declare variables with a decimal figure.
    Java Commands

Advanced Java Commands

The advanced commands are as explained below:

  • Return: This is the command which is used at the end of the program and specifically returns only one value. It is also a reserved keyword which means it cannot be used as an identifier in Java. The return keyword can be used to exit from a method either with a value or without a value.
    Java Commands
  • This: This keyword in java is used to refer to the current state of the object or a current class instance variable or a current class constructor.
    Java Commands
  • Super keyword: It is a variable that is used to reference parent class objects or the calling of parent class methods.
    Java Commands
  • Extends: This is the keyword used in the case of inheritance, a Java object-oriented programming concept where the attributes of one component (class or an interface) are called by other components. Extends and implements go hand in hand.
    Java Commands

Tips And Tricks to use Java Commands

When you are making use of these Java commands, using a TAB button in an IDE will fast pace your development work as the keywords will be auto-generated in this case.

Conclusion

These are some of the Java commands and keywords which Java developers can frequently use. There are several other commands which take into play along with the logic of the program. I hope you liked our article. Stay tuned.

The above is the detailed content of Java Commands. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!