Skip to content

Commit cbe8395

Browse files
committedJan 25, 2022
8280168: Add Objects.toIdentityString
Reviewed-by: alanb, mchung, rriggs, smarks
1 parent f4575e4 commit cbe8395

File tree

3 files changed

+60
-5
lines changed

3 files changed

+60
-5
lines changed
 

‎src/java.base/share/classes/java/lang/invoke/MethodHandleProxies.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ private static boolean isObjectMethod(Method m) {
292292
private static Object callObjectMethod(Object self, Method m, Object[] args) {
293293
assert(isObjectMethod(m)) : m;
294294
return switch (m.getName()) {
295-
case "toString" -> self.getClass().getName() + "@" + Integer.toHexString(self.hashCode());
295+
case "toString" -> java.util.Objects.toIdentityString(self);
296296
case "hashCode" -> System.identityHashCode(self);
297297
case "equals" -> (self == args[0]);
298298
default -> null;

‎src/java.base/share/classes/java/util/Objects.java

+25-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2009, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2009, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -164,6 +164,30 @@ public static String toString(Object o, String nullDefault) {
164164
return (o != null) ? o.toString() : nullDefault;
165165
}
166166

167+
/**
168+
* {@return a string equivalent to the string returned by {@code
169+
* Object.toString} if that method and {@code hashCode} are not
170+
* overridden}
171+
*
172+
* @implNote
173+
* This method constructs a string for an object without calling
174+
* any overridable methods of the object.
175+
*
176+
* @implSpec
177+
* The method returns a string equivalent to:<br>
178+
* {@code o.getClass().getName() + "@" + Integer.toHexString(System.identityHashCode(o))}
179+
*
180+
* @param o an object
181+
* @throws NullPointerException if the argument is null
182+
* @see Object#toString
183+
* @see System#identityHashCode(Object)
184+
* @since 19
185+
*/
186+
public static String toIdentityString(Object o) {
187+
requireNonNull(o);
188+
return o.getClass().getName() + "@" + Integer.toHexString(System.identityHashCode(o));
189+
}
190+
167191
/**
168192
* Returns 0 if the arguments are identical and {@code
169193
* c.compare(a, b)} otherwise.

‎test/jdk/java/util/Objects/BasicObjectsTest.java

+34-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2009, 2015, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2009, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,9 +23,8 @@
2323

2424
/*
2525
* @test
26-
* @bug 6797535 6889858 6891113 8013712 8011800 8014365
26+
* @bug 6797535 6889858 6891113 8013712 8011800 8014365 8280168
2727
* @summary Basic tests for methods in java.util.Objects
28-
* @author Joseph D. Darcy
2928
*/
3029

3130
import java.util.*;
@@ -40,6 +39,7 @@ public static void main(String... args) {
4039
errors += testHash();
4140
errors += testToString();
4241
errors += testToString2();
42+
errors += testToIdentityString();
4343
errors += testCompare();
4444
errors += testRequireNonNull();
4545
errors += testIsNull();
@@ -134,6 +134,37 @@ private static int testToString2() {
134134
return errors;
135135
}
136136

137+
private static int testToIdentityString() {
138+
int errors = 0;
139+
// Test null behavior
140+
try {
141+
Objects.toIdentityString(null);
142+
errors++;
143+
} catch (NullPointerException npe) {
144+
; // Expected
145+
}
146+
// Behavior on typical objects
147+
Object o = new Object(){};
148+
errors += (Objects.toIdentityString(o).equals(o.toString()))? 0 : 1;
149+
// Verify object's toString *not* called
150+
Object badToString = new Object() {
151+
@Override
152+
public String toString() {
153+
throw new RuntimeException();
154+
}
155+
};
156+
Objects.toIdentityString(badToString);
157+
// Verify object's hashCode *not* called
158+
Object badHashCode = new Object() {
159+
@Override
160+
public int hashCode() {
161+
throw new RuntimeException("0xDEADBEFF");
162+
}
163+
};
164+
Objects.toIdentityString(badHashCode);
165+
return errors;
166+
}
167+
137168
private static int testCompare() {
138169
int errors = 0;
139170
String[] values = {"e. e. cummings", "zzz"};

0 commit comments

Comments
 (0)
Please sign in to comment.