在 Java 中列印字串

Rupam Yadav 2023年10月12日
  1. 在 Java 中使用 print() 方法列印字串
  2. 在 Java 中使用 Scanner 輸入和 println 方法列印字串
  3. 在 Java 中使用 printf() 方法列印字串
在 Java 中列印字串

在 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
作者: Rupam Yadav
Rupam Yadav avatar Rupam Yadav avatar

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

相關文章 - Java String