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

Converting an int to a binary string representation in Java?(将 int 转换为 Java 中的二进制字符串表示形式?)
本文介绍了将 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)

这篇关于将 int 转换为 Java 中的二进制字符串表示形式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Fastest way to generate all binary strings of size n into a boolean array?(将所有大小为 n 的二进制字符串生成为布尔数组的最快方法?)
Convert integer to zero-padded binary string(将整数转换为零填充的二进制字符串)
How Can I Convert Very Large Decimal Numbers to Binary In Java(如何在 Java 中将非常大的十进制数转换为二进制数)
Check if only one single bit is set within an integer (whatever its position)(检查整数中是否只设置了一个位(无论其位置如何))
Embed a Executable Binary in a shell script(在 shell 脚本中嵌入可执行二进制文件)
why does quot;STRINGquot;.getBytes() work different according to the Operation System(为什么“STRING.getBytes() 的工作方式因操作系统而异)