Is there any builtin support for outputting a binary representation of a short in java?
There is of course, this, which recommends the use of Integer.toBinaryString(), which works. There is no comparable Short.toBinaryString(). Is anything else available?
Update: Integer.toBinaryString() doesn't quite work the way Short.toBinaryString() would work if it existed.
public static void main(String[] args) {
System.out.println(Integer.toBinaryString(Short.MIN_VALUE));
}
produces
11111111111111111000000000000000
whereas I would like to see
1000000000000000
Of course, it's easy enough to chop off the first 16 digits, but that's kind of my point. This method ought to exist.