Home > Java > Java Tutorial > body text

Use Java's System.out.println() function to print text content to the console

王林
Release: 2023-07-24 16:09:13
Original
2759 people have browsed it

Use java's System.out.println() function to print text content to the console

In Java programming, we often need to output some information to the console for debugging or inspection while the program is running. The running status of the program. A common method is to use the println() function of the out object of the System class to output text content.

System.out.println() is a standard Java output statement. Its function is to print the specified content to the console and automatically wrap the line at the end. Below is a simple sample code that demonstrates how to use the System.out.println() function to print text content to the console:

public class PrintToConsole {
    public static void main(String[] args) {
        System.out.println("这是一个简单的文本内容。");
        System.out.println("Hello, World!");
        System.out.println("Java编程真有趣!");
    }
}
Copy after login

In the above example, we created a Java function called PrintToConsole class, and uses the System.out.println() function three times in the main() function to print text content to the console. Running the code, we will see the following output on the console:

这是一个简单的文本内容。
Hello, World!
Java编程真有趣!
Copy after login

As can be seen from the above example, just pass the text content to be printed as a parameter to the System.out.println() function. Can. In the parameters of the println() function, you can use double quotes to enclose the text content, or you can directly store the text content in a variable and pass it. For example:

public class PrintToConsole {
    public static void main(String[] args) {
        String message = "这是一个文本内容。";
        System.out.println(message);
        
        int number = 10;
        System.out.println("数字:" + number);
    }
}
Copy after login

In the above code, we use a String type variable message to store text content and pass it as a parameter to the System.out.println() function for printing. When using the System.out.println() function for the second time, we spliced ​​the string "number:" with the value of the integer variable number, and passed the splicing result as a parameter to the function for printing.

Summary:
Using java's System.out.println() function can easily print text content to the console. Whether passing text content directly or using variable storage, the System.out.println() function can meet our needs for output information. In the process of debugging or program output, the System.out.println() function is a very commonly used tool.

The above is the detailed content of Use Java's System.out.println() function to print text content to the console. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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!