What is the output of the following code?
Person james = new Person("James Gosling");
Person person = james;
System.out.println(System.identityHashCode(james) == System.identityHashCode(person));What is the output of the following code?
Person james = new Person("James Gosling");
Person person = james;
System.out.println(System.identityHashCode(james) == System.identityHashCode(person));Create a free account to access the full topic