Using Underscore Characters in Numeric Literals

來源:互聯網
上載者:User

Reprint from the following URL:

http://download.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html 

 

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 pointfloat pi2 = 3._1415F;      // Invalid; cannot put underscores adjacent to a decimal pointlong socialSecurityNumber1  = 999_99_9999_L;         // Invalid; cannot put underscores prior to an L suffixint x1 = _52;              // This is an identifier, not a numeric literalint x2 = 5_2;              // OK (decimal literal)int x3 = 52_;              // Invalid; cannot put underscores at the end of a literalint x4 = 5_______2;        // OK (decimal literal)int x5 = 0_x52;            // Invalid; cannot put underscores in the 0x radix prefixint x6 = 0x_52;            // Invalid; cannot put underscores at the beginning of a numberint x7 = 0x5_2;            // OK (hexadecimal literal)int x8 = 0x52_;            // Invalid; cannot put underscores at the end of a number

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.