💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
### [`Formatter`转换](https://lingcoder.gitee.io/onjava8/#/book/18-Strings?id=formatter-%e8%bd%ac%e6%8d%a2) 下面的表格展示了最常用的类型转换: | 类型 | 含义 | | :-: | :-- | | `d` | 整型(十进制) | | `c` | Unicode字符 | | `b` | Boolean值 | | `s` | String | | `f` | 浮点数(十进制) | | `e` | 浮点数(科学计数) | | `x` | 整型(十六进制) | | `h` | 散列码(十六进制) | | `%` | 字面值“%” | 下面的程序演示了这些转换是如何工作的: ~~~ // strings/Conversion.java import java.math.*; import java.util.*; public class Conversion { public static void main(String[] args) { Formatter f = new Formatter(System.out); char u = 'a'; System.out.println("u = 'a'"); f.format("s: %s%n", u); // f.format("d: %d%n", u); f.format("c: %c%n", u); f.format("b: %b%n", u); // f.format("f: %f%n", u); // f.format("e: %e%n", u); // f.format("x: %x%n", u); f.format("h: %h%n", u); int v = 121; System.out.println("v = 121"); f.format("d: %d%n", v); f.format("c: %c%n", v); f.format("b: %b%n", v); f.format("s: %s%n", v); // f.format("f: %f%n", v); // f.format("e: %e%n", v); f.format("x: %x%n", v); f.format("h: %h%n", v); BigInteger w = new BigInteger("50000000000000"); System.out.println( "w = new BigInteger(\"50000000000000\")"); f.format("d: %d%n", w); // f.format("c: %c%n", w); f.format("b: %b%n", w); f.format("s: %s%n", w); // f.format("f: %f%n", w); // f.format("e: %e%n", w); f.format("x: %x%n", w); f.format("h: %h%n", w); double x = 179.543; System.out.println("x = 179.543"); // f.format("d: %d%n", x); // f.format("c: %c%n", x); f.format("b: %b%n", x); f.format("s: %s%n", x); f.format("f: %f%n", x); f.format("e: %e%n", x); // f.format("x: %x%n", x); f.format("h: %h%n", x); Conversion y = new Conversion(); System.out.println("y = new Conversion()"); // f.format("d: %d%n", y); // f.format("c: %c%n", y); f.format("b: %b%n", y); f.format("s: %s%n", y); // f.format("f: %f%n", y); // f.format("e: %e%n", y); // f.format("x: %x%n", y); f.format("h: %h%n", y); boolean z = false; System.out.println("z = false"); // f.format("d: %d%n", z); // f.format("c: %c%n", z); f.format("b: %b%n", z); f.format("s: %s%n", z); // f.format("f: %f%n", z); // f.format("e: %e%n", z); // f.format("x: %x%n", z); f.format("h: %h%n", z); } } /* Output: u = 'a' s: a c: a b: true h: 61 v = 121 d: 121 c: y b: true s: 121 x: 79 h: 79 w = new BigInteger("50000000000000") d: 50000000000000 b: true s: 50000000000000 x: 2d79883d2000 h: 8842a1a7 x = 179.543 b: true s: 179.543 f: 179.543000 e: 1.795430e+02 h: 1ef462c y = new Conversion() b: true s: Conversion@15db9742 h: 15db9742 z = false b: false s: false h: 4d5 */ ~~~ 被注释的代码表示,针对相应类型的变量,这些转换是无效的。如果执行这些转换,则会触发异常。 注意,程序中的每个变量都用到了`b`转换。虽然它对各种类型都是合法的,但其行为却不一定与你想象的一致。对于`boolean`基本类型或`Boolean`对象,其转换结果是对应的`true`或`false`。但是,对其他类型的参数,只要该参数不为`null`,其转换结果永远都是`true`。即使是数字 0,转换结果依然为`true`,而这在其他语言中(包括C),往往转换为`false`。所以,将`b`应用于非布尔类型的对象时请格外小心。 还有许多不常用的类型转换与格式修饰符选项,你可以在 JDK 文档中的`Formatter`类部分找到它们。