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
525 views
in Technique[技术] by (71.8m points)

Address of an object in Java

Why there is no way to get current address of an Object in pure java? And how actually == operator works? Is there any possibility to compare references to objects not using this operator?

See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)

Q1: No way to get obj's mem location: Original creators of Java decided that this was not necessary to the language. Moreover, Java is now quite a old/venerable language, and it has never been added to the language, which means no one ever needed it.

Q2. how == works: this returns true if two values on the stack are the same value. I believe that the java language specification demands that these two objects / primatives be of the same type. I don't know if you could hack this in the bytecode... The answer to this may be JVM specific.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
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.8k users

...