Is there a way to detect if two objects in Java are aliased to each other? In C I guess we can check the memory addresses that two pointers are pointing to. But is there a way to do that in Java?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In java, the variables are references so you can compare them using
==to see if they refer to the same object.