Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
350 views
in Technique[技术] by (71.8m points)

java - long value with 0 on left

Why this behavior happens?

long value = 123450;
System.out.println("value: " + value); 

value: 123450

 

long value = 0123450;
//           ^
System.out.println("value: " + value); 

value: 42792

What is this 42792?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Why this behavior happens?

Just as literals starting with 0x are treated as hexadecimal numbers (base 16), literals starting with a 0 are treated as octal numbers, i.e., numbers in base 8.

(Try writing 0789, and you'll see that the compiler will complain.)

What is this 42792?

The number 123450 in base 8 represents the number

1×85 + 2×84 + 3×83 + 4×82 + 5×81 + 0×80 = 42792


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.9k users

...