Home  >  Article  >  Java  >  What is the java output statement?

What is the java output statement?

藏色散人
藏色散人Original
2019-06-01 14:59:558946browse

Java is an object-oriented programming language. It not only absorbs the various advantages of the C language, but also abandons the difficult-to-understand concepts such as multiple inheritance and pointers in C. Therefore, the Java language has two characteristics: powerful functions and simple and easy to use. . As a representative of static object-oriented programming languages, Java language perfectly implements object-oriented theory and allows programmers to perform complex programming with an elegant way of thinking.

What is the java output statement?

The output statement is the simplest and most commonly used statement in Java:

public class Test1 {
public static void main(String[] args) {
System.out.println("hello java");
}
}

The file name is written after public class, here What you write must be consistent with the file name. The second line is the main method, which is the entry point for a program to run (I don’t know why the main method is written like this, just remember it);

The third The line is the output statement, println means line break display, print means no line break after display, write the words and expressions you want to output in "".

The above is the detailed content of What is the java output statement?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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
Previous article:How to use jsp tagsNext article:How to use jsp tags