java中数字定义里面的下划线--起什么作用呢?

java-教程王 Java经验 发布时间:2022-02-22 09:35:01 阅读数:9035 1
下文笔者将讲述数字文字中下划线的功能简介说明,如下所示:
实现思路:
    数字下划线:用于定义数字时,便于对数字的理解
       增强数值类型的可读性(编译时,会取消数字中下划线的定义)
注意事项:
    下划线可在"数值整数部分"的任意位置
例:
int x1 = _87; // This is an identifier, not a numeric literal.
int x2 = 8_7; // OK. (Decimal literal)
int x2 = 87_; // Illegal. (Underscores must always be between digits)
int x3 = 9_8; // OK. (Decimal literal.)
int x4 = 0_x87; // Illegal. Can’t put underscores in the “0x” radix prefix.
int x5 = 0x_87; // Illegal. (Underscores must always be between digits)
int x6 = 0x8_7; // OK. (Hexadecimal literal)
int x6 = 0x87_; // Illegal. (Underscores must always be between digits)
int x6 = 0x_; // Illegal. (Not valid with the underscore removed)
int x7 = 0_87; // OK. (Octal literal)
int x7 = 08_7; // OK. (Octal literal)
int x8 = 087_; // Illegal. (Underscores must always be between digits)
版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。

本文链接: https://www.Java265.com/JavaJingYan/202202/16454940982352.html

最近发表

热门文章

好文推荐

Java265.com

https://www.java265.com

站长统计|粤ICP备14097017号-3

Powered By Java265.com信息维护小组

使用手机扫描二维码

关注我们看更多资讯

java爱好者