码迷,mamicode.com
首页 > 其他好文 > 详细

jdk7的二进制整数和下划线分隔符

时间:2018-01-31 14:34:30      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:bin   技术分享   结果   class   span   sys   stat   out   字节   

1 //二进制整数:
2 public class TestBinaryNum{
3     public static void main(String[] args) {
4         int a = 0b0000_0000_0000_0000_0000_0011;//int 是4个字节  每个字节8位 一共是32位;
5         int b = 1_1245_4556;//可以用_来隔开数字对结果无影响;
6         System.out.println(a);
7         System.out.println(b);
8     }
9 }

技术分享图片

 

jdk7的二进制整数和下划线分隔符

标签:bin   技术分享   结果   class   span   sys   stat   out   字节   

原文地址:https://www.cnblogs.com/zbgghost/p/8391341.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!