How can I convert an int number from decimal to binary. For example:
int x=10; // radix 10
How can I make another integer has the binary representation of x, such as:
int y=1010; // radix 2
by using c only?
|
|
|
An integer is always stored in binary format internally -- saying that you want to convert |
|||
|
|
|
First thing you should understand is that a value is an abstract notion, that is not bounded to any representation. For example, if you have 20 apples, the number of apples will be the same regardless of the representation. So, |
|||||||
|
|
http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Integer.html |
|||
|
|
|
Whether it's binary or decimal doesn't really have anything to do with the integer itself. Binary or decimal is a property of a physical representation of the integer, i.e. a String. Thus, the methods you should look at are BTW, internally, all Java integers are binary, but literals in the source code are decimal (or octal). |
|||
|
|
|
Your question is a bit unclear but I'll do my best to try to make sense of it.
From this it looks like you wish to write a binary literal in your source code. Java doesn't support binary integer literals. It only supports decimal, hexadecimal and octal. You can write your number as a string instead and use
But you should note that the final result is identical to writing If you want to convert an existing integer to its binary representation as a string then you can use |
||||
|
|
Both integers will have the same interior representation, you can however display as binary via Integer.toBinaryString(i) |
|||
|
|
|
Converting an integer to another base (string representation):
Converting the string back into an integer
This covers the general case for any base. There's no way to explicitly assign an integer as binary (only decimal, octal, and hexadecimal)
|
|||
|
|