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.
我已经使用十进制数转换为二进制数
int k=8; String toBinaryString = Integer.toBinaryString(k);
经过一些操作后,我想要返回 int 值。任何人都可以帮助我使用该功能还是我必须仅使用循环来转换它。
您可以使用:
int originalValue = Integer.parseInt(toBinaryString , 2));