亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

String.format怎樣格式化字符串

小樊
82
2024-10-12 10:36:06
欄目: 編程語言

String.format() 是 Java 中的一個非常有用的方法,用于格式化字符串。它允許你使用占位符 {} 來表示要插入的值,并通過傳遞參數來替換這些占位符。以下是一些基本的使用示例:

  1. 基本格式化
String name = "Alice";
int age = 30;
String formattedString = String.format("My name is %s and I am %d years old.", name, age);
System.out.println(formattedString);  // 輸出:My name is Alice and I am 30 years old.

在這個例子中,%s 是一個字符串占位符,%d 是一個整數占位符。 2. 格式化浮點數

double pi = 3.14159;
String formattedDouble = String.format("Pi is approximately %.2f.", pi);
System.out.println(formattedDouble);  // 輸出:Pi is approximately 3.14.

在這里,%.2f 表示保留兩位小數的浮點數。 3. 對齊和填充

int[] numbers = {1, 2, 3, 4, 5};
String formattedArray = String.format("%-5d | %-5d | %-5d | %-5d | %-5d", numbers[0], numbers[1], numbers[2], numbers[3], numbers[4]);
System.out.println(formattedArray);
// 輸出(假設數字寬度至少為5):
// 1     | 2     | 3     | 4     | 5    

在這個例子中,%-5d 表示左對齊的數字,總寬度為5個字符。如果數字不足5個字符,它會在左側用空格填充。 4. 使用換行符

String multiLineString = String.format("Hello, %s!\nToday is %s.", "World", "Monday");
System.out.println(multiLineString);
// 輸出:
// Hello, World!
// Today is Monday.

注意,\n 在字符串字面值中表示換行符,但在 String.format() 中不是必需的,除非你確實想在格式化的字符串中包含換行。 5. 類型轉換

String.format() 還支持一些類型轉換,如將整數轉換為十六進制字符串:

int number = 255;
String hexString = String.format("The hexadecimal value of %d is %X.", number, number);
System.out.println(hexString);  // 輸出:The hexadecimal value of 255 is FF.

在這個例子中,%X 表示大寫的十六進制表示。如果你想要小寫,可以使用 %x

0
彩票| 西充县| 新宾| 淮阳县| 安福县| 子洲县| 泰顺县| 拉萨市| 牡丹江市| 常州市| 和林格尔县| 雷波县| 当雄县| 罗平县| 团风县| 满洲里市| 斗六市| 邳州市| 邹城市| 阿克苏市| 保定市| 于都县| 安仁县| 炎陵县| 南乐县| 新郑市| 滕州市| 延津县| 清流县| 新野县| 新乐市| 正宁县| 千阳县| 太白县| 宝鸡市| 德昌县| 错那县| 屯留县| 伊宁县| 崇阳县| 敦煌市|