在 Java 中打印字符串
Rupam Yadav
2023年1月30日
2022年5月11日
在 Java 中,字符串是表示字符序列的对象。在这里,我们将看看在 Java 中打印字符串的各种方法。
在 Java 中使用 print()
方法打印字符串
在下面给出的代码片段中,我们有一个字符串类型的变量 str
。要在控制台屏幕上为用户打印此变量的值,我们将使用 print()
方法。
我们将要打印的文本作为参数作为 String
传递给此方法。光标停留在控制台文本的末尾,下一次打印从我们在输出中看到的同一行开始。
public class StringPrint {
public static void main(String[] args) {
String str = "This is a string stored in a variable.";
System.out.print(str);
System.out.print("Second print statement.");
}
}
输出:
This is a string stored in a variable.Second print statement.
在 Java 中使用 Scanner
输入和 println
方法打印字符串
在这里,我们使用 Scanner
类来获取用户的输入。
我们创建了一个 Scanner
类的对象,我们要求用户使用 print()
方法输入他的名字。我们在 input
对象上调用 nextLine()
方法来获取用户的输入字符串。
用户输入存储在 String
类型变量中。后来,我们使用 println()
方法打印连接的字符串和 +
运算符连接两个字符串。
然后,print()
和 println()
方法用于打印引号内的字符串。但是在 println()
方法中,光标移动到下一行的开头。
最后,我们使用 close()
方法关闭扫描仪输入。
import java.util.Scanner;
public class StringPrint {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("Enter your name: ");
String name = input.nextLine();
System.out.println("Your name is "+name);
input.close();
}
}
输出:
Enter your name: Joy
Your name is Joy
在 Java 中使用 printf()
方法打印字符串
printf()
方法提供字符串格式。我们可以提供各种格式说明符;根据这些说明符,它格式化字符串并将其打印在控制台上。
这里我们使用了两个格式说明符,%s
和 %d
,其中 %s
用于字符串,而 %d
用于有符号十进制整数。我们还使用了\n
,它在文本的特定点插入一个新行。
public class StringPrint {
public static void main(String[] args) {
String str = "The color of this flower is ";
int i = 20;
System.out.printf("Printing my string : %s\n",str);
System.out.printf("Printing int : %d\n",i);
}
}
输出:
Printing my string : The color of this flower is
Printing int : 20
Author: Rupam Yadav
Rupam Saini is an android developer, who also works sometimes as a web developer., He likes to read books and write about various things.
LinkedIn