| |
2. 6. 23. 十进制整数转换为八进制数 |
|
public class Main {
public static void main(String[] args) {
System.out.println(Integer.toOctalString(27));
}
}
|
|
2. 6. 整数 | | 2. 6. 1. | Java int:int is 32 bit signed type ranges from –2,147,483,648 to 2,147,483,647. | | | | 2. 6. 2. | 整数:最大,最小值 | | | | 2. 6. 3. | The number of bits used to represent an int value in two's complement binary form. | | | | 2. 6. 4. | 位操作方法整数: bitCount | | | | 2. 6. 5. | 最高位: 128 | | | | 2. 6. 6. | 创建一个整数对象 | | | | 2. 6. 7. | Integer.lowestOneBit(n), Integer.numberOfLeadingZeros(n), Integer.numberOfTrailingZeros(n) | | | | 2. 6. 8. | 整数:向左旋转 | | | | 2. 6. 9. | signum ( )返回整数 | | | | 2. 6. 10. | Integer.reverseBytes( ) reverses the order of the bytes in num and returns the result | | | | 2. 6. 11. | 从控制台读整数并计算 | | | | 2. 6. 12. | Compare integers using if statements, relational operators and equality operators | | | | 2. 6. 13. | 转移和扩展随机整数 | | | | 2. 6. 14. | 平等法 | | | | 2. 6. 15. | 等价 | | | | 2. 6. 16. | 转换成一个int值字符串: Integer.toString (i) | | | | 2. 6. 17. | 转换成一个int值字符串:new Integer(i).toString ( ) | | | | 2. 6. 18. | 将字符串转换为整数 | | | | 2. 6. 19. | Convert an int value to String: concatenate string to an int value | | | | 2. 6. 20. | 十六进制数转换为十进制数 | | | | 2. 6. 21. | 八进制数转换为十进制数 | | | | 2. 6. 22. | 二进制数转换为十进制数 | | | | 2. 6. 23. | 十进制整数转换为八进制数 | | | | 2. 6. 24. | 十进制整数转换为十六进制数 | | | | 2. 6. 25. | 从整数转换为string | | | | 2. 6. 26. | 从字符串转换为整数 | | | | 2. 6. 27. | 从十进制转换成二进制 | | | | 2. 6. 28. | 从十进制转换为十六进制 | | | | 2. 6. 29. | Convert from decimal to hexadecimal with leading zeroes and uppercase | | | | 2. 6. 30. | 从Byte数组转换为十六进制字符串 | | | | 2. 6. 31. | 字节数组转换为十六进制字符串 | | | | 2. 6. 32. | 十进制转换为十六进制 | | | | 2. 6. 33. | 十进制转换为八进制 | | | | 2. 6. 34. | 十进制转换为二进制 | | | | 2. 6. 35. | 字符串转换为整数或数量 | | | | 2. 6. 36. | 解析和格式化为八进制数 | | | | 2. 6. 37. | 解析和格式化为十进制数 | | | | 2. 6. 38. | 解析和格式为十六进制 | | | | 2. 6. 39. | Parse and format to arbitrary radix <= Character.MAX_RADIX | | | | 2. 6. 40. | To catch illegal number conversion, try using the try/catch mechanism. | | | | 2. 6. 41. | 整数参数索引传递 | | | | 2. 6. 42. | 比较两个整型数组 | | | | 2. 6. 43. | 扭转整数 | | |
|