最适合网络开发者的网站
Java 编程语言。初学者课程

尿素

Java 打印变量


Display Variables

The println() method is often used to display variables.

To combine both text and a variable, use the + character:

例子

String name = "John";
System.out.println("Hello " + name);
亲自尝试 »

You can also use the + character to add a variable to another variable:

例子

String firstName = "John ";
String lastName = "Doe";
String fullName = firstName + lastName;
System.out.println(fullName);
亲自尝试 »

For numeric values, the + character works as a mathematical operator (notice that we use int (integer) variables here):

例子

int x = 5;
int y = 6;
System.out.println(x + y); // Print the value of x + y
亲自尝试 »

From the example above, you can expect:

  • x stores the value 5
  • y stores the value 6
  • Then we use the println() method to display the value of x + y, which is 11