Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to set my integer number by a binary literal. Is it possible in Java?

Thanks,

share|improve this question
6  
@Cicada the anwser of that question is out of date. – josefx Jun 9 '12 at 12:43
@josefx I don't think it is. It has an answer related to java 7 – Rakkun Jun 9 '12 at 12:51
@Cicada: the accepted anwser of. – user unknown Jun 9 '12 at 12:51
@userunknown It's not because there's only one accepted answer that the others are irrelevant or false – Rakkun Jun 9 '12 at 12:53
@Cicada: In general I agree with you, but the top answer here is fairly precise and up-to-date. The JSE7 related answer in the former question is fairly hard to find. – home Jun 9 '12 at 12:56
show 2 more comments

3 Answers

up vote 14 down vote accepted

Look at this link:

http://en.wikibooks.org/wiki/Java_Programming/Literals/Numeric_Literals/Integer_Literals

In Java, you may enter integer numbers in several formats:

1) As decimal numbers such as 1995, 51966. Negative decimal numbers such as -42 are actually expressions consisting of the integer literal with the unary negation operation.

2) As octal numbers, using a leading 0 (zero) digit and one or more additional octal digits (digits between 0 and 7), such as 077. Octal numbers may evaluate to negative numbers; for example 037777777770 is actually the decimal value -8.

3) As hexadecimal numbers, using the form 0x (or 0X) followed by one or more hexadecimal digits (digits from 0 to 9, a to f or A to F). For example, 0xCAFEBABEL is the long integer 3405691582. Like octal numbers, hexadecimal literals may represent negative numbers.

4) Starting in J2SE 7.0, as binary numbers, using the form 0b (or 0B) followed by one or more binary digits (0 or 1). For example, 0b101010 is the integer 42. Like octal and hex numbers, binary literals may represent negative numbers.

If you do not have J2SE 7.0 use this:

int val = Integer.parseInt("001101", 2);
share|improve this answer
+1 you can double literals in hexi-decmal. See the source for Double for examples. – Peter Lawrey Jun 9 '12 at 15:46

In JDK 7 it is possible:

int binaryInt = 0b101;

Just prefix your number with 0b.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.