将 int 转换为 Java 中的二进制字符串表示形式?

2022-01-09 00:00:00 string binary int java

在 Java 中将 int 转换为二进制字符串表示形式的最佳方法(理想情况下,最简单)是什么?

What would be the best way (ideally, simplest) to convert an int to a binary string representation in Java?

例如,假设 int 是 156.它的二进制字符串表示将是10011100".

For example, say the int is 156. The binary string representation of this would be "10011100".

推荐答案

Integer.toBinaryString(int i)

相关文章