Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Java中字节的格式说明符是什么?
例如,
%d=int %s=short %f=float
您可以%d用于十进制输出(适用于所有整数类型,而不仅仅是int),但这将打印带符号的值(例如-100),这对于一个字节来说可能是意外的。
%d
int
-100
也可以%x用于十六进制。
%x