Java中数字里面混合有下划线10_000 代表什么意思?

复制代码
public static void main(String[] args) {
        int a = 10_000;
        System.out.println(a);  // 10000
    }

java 7 的 特性 :

复制代码
https://docs.oracle.com/javase/7/docs/technotes/guides/language/underscores-literals.html

程序中的数字可以使用下划线来进行分割(_)以便于为程序提供更好的可读性。

JDK 在编译的时候,将会对数字中间的下划线进行处理,替换掉下划线。

Underscores in Numeric Literals

In Java SE 7 and later, any number of underscore characters (_) can appear anywhere between digits in a numerical literal. This feature enables you, for example, to separate groups of digits in numeric literals, which can improve the readability of your code.

For instance, if your code contains numbers with many digits, you can use an underscore character to separate digits in groups of three, similar to how you would use a punctuation mark like a comma, or a space, as a separator.

The following example shows other ways you can use the underscore in numeric literals:

复制代码
long creditCardNumber = 1234_5678_9012_3456L;
long socialSecurityNumber = 999_99_9999L;
float pi = 	3.14_15F;
long hexBytes = 0xFF_EC_DE_5E;
long hexWords = 0xCAFE_BABE;
long maxLong = 0x7fff_ffff_ffff_ffffL;
byte nybbles = 0b0010_0101;
long bytes = 0b11010010_01101001_10010100_10010010;

You can place underscores only between digits; you cannot place underscores in the following places:

  • At the beginning or end of a number
  • Adjacent to a decimal point in a floating point literal
  • Prior to an F or L suffix
  • In positions where a string of digits is expected

The following examples demonstrate valid and invalid underscore placements (which are highlighted) in numeric literals:

复制代码
float pi1 = 3_.1415F;      // Invalid; cannot put underscores adjacent to a decimal point
float pi2 = 3._1415F;      // Invalid; cannot put underscores adjacent to a decimal point
long socialSecurityNumber1
  = 999_99_9999_L;         // Invalid; cannot put underscores prior to an L suffix

int x1 = _52;              // This is an identifier, not a numeric literal
int x2 = 5_2;              // OK (decimal literal)
int x3 = 52_;              // Invalid; cannot put underscores at the end of a literal
int x4 = 5_______2;        // OK (decimal literal)

int x5 = 0_x52;            // Invalid; cannot put underscores in the 0x radix prefix
int x6 = 0x_52;            // Invalid; cannot put underscores at the beginning of a number
int x7 = 0x5_2;            // OK (hexadecimal literal)
int x8 = 0x52_;            // Invalid; cannot put underscores at the end of a number

int x9 = 0_52;             // OK (octal literal)
int x10 = 05_2;            // OK (octal literal)
int x11 = 052_;            // Invalid; cannot put underscores at the end of a number

中文

数字文字中的下划线

在 Java SE 7 及更高版本中,任意数量的下划线字符 ( _) 可以出现在数字文字中数字之间的任何位置。例如,此功能使您能够分隔数字文字中的数字组,这可以提高代码的可读性。

例如,如果您的代码包含许多数字,则可以使用下划线字符将三组数字分隔开,类似于使用逗号或空格等标点符号作为分隔符。

以下示例显示了在数字文本中使用下划线的其他方法:

复制代码
长信用卡号 = 1234_5678_9012_3456L;
长社会保障号码 = 999_99_9999L;
浮点数 pi = 3.14_15F;
长十六进制字节 = 0xFF_EC_DE_5E;
长十六进制字= 0xCAFE_BABE;
长 maxLong = 0x7fff_ffff_ffff_ffffL;
字节nybbles = 0b0010_0101;
长字节= 0b11010010_01101001_10010100_10010010;

只能在数字之间放置下划线;不能在以下位置放置下划线:

  • 在数字的开头或结尾
  • 浮点数字面值中的小数点附近
  • F在orL后缀 之前
  • 在需要一串数字的位置

以下示例演示了数字文字中有效和无效的下划线位置(突出显示):

复制代码
浮点数 pi1 = 3_.1415F; // 无效的;不能在小数点旁边放置下划线
浮点数 pi2 = 3._1415F; // 无效的;不能在小数点旁边放置下划线
长社会保障号码1
= 999_99_9999_L; // 无效的;不能在 L 后缀之前添加下划线

int x1 = _52; // 这是一个标识符,而不是数字文字
int x2 = 5_2; // OK(十进制文字)
int x3 = 52_; // 无效的;不能在文字末尾添加下划线
整数 x4 = 5_______2; // OK(十进制文字)

int x5 = 0_x52; // 无效的;不能在 0x 基数前缀中添加下划线
int x6 = 0x_52; // 无效的;不能在数字开头添加下划线
int x7 = 0x5_2; // OK(十六进制文字)
int x8 = 0x52_; // 无效的;不能在数字末尾添加下划线

int x9 = 0_52; // OK(八进制文字)
int x10 = 05_2; // OK(八进制文字)
int x11 = 052_; // 无效的;不能在数字末尾添加下划线
相关推荐
然我6 分钟前
防抖与节流:如何让频繁触发的函数 “慢下来”?
前端·javascript·html
鱼樱前端10 分钟前
2025前端人一文看懂 Broadcast Channel API 通信指南
前端·vue.js
小屁孩大帅-杨一凡10 分钟前
如何解决ThreadLocal内存泄漏问题?
java·开发语言·jvm·算法
学习3人组31 分钟前
在 IntelliJ IDEA 系列中phpstorm2025设置中文界面
java·ide·intellij-idea
烛阴38 分钟前
非空断言完全指南:解锁TypeScript/JavaScript的安全导航黑科技
前端·javascript
鱼樱前端42 分钟前
2025前端人一文看懂 window.postMessage 通信
前端·vue.js
快乐点吧1 小时前
【前端】异步任务风控验证与轮询机制技术方案(通用笔记版)
前端·笔记
pe7er1 小时前
nuxtjs+git submodule的微前端有没有搞头
前端·设计模式·前端框架
七月的冰红茶2 小时前
【threejs】第一人称视角之八叉树碰撞检测
前端·threejs
爱掉发的小李2 小时前
前端开发中的输出问题
开发语言·前端·javascript