Skip to content

Commit bb10711

Browse files
author
Roger Riggs
committedJun 23, 2021
8269172: Add java.util.Objects.newIdentity method
Reviewed-by: mchung
1 parent 936d430 commit bb10711

File tree

2 files changed

+28
-15
lines changed

2 files changed

+28
-15
lines changed
 

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

+11-14
Original file line numberDiff line numberDiff line change
@@ -423,20 +423,6 @@ public static long getObjectSize(Object o) {
423423
return Unsafe.getUnsafe().getObjectSize(o);
424424
}
425425

426-
/**
427-
* Returns a new Object implementing the {@code IdentityObject} interface.
428-
* The object is a unique {@link IdentityObject} suitable for all purposes
429-
* for which {@code new Object{}} was used including synchronization,
430-
* mutexes and unique placeholders.
431-
*
432-
* @return a new Object implementing the IdentityObject interface
433-
* @since Valhalla
434-
*/
435-
public static IdentityObject newIdentity() {
436-
// Return a new instance of an anonymous inner class.
437-
return new IdentityObject() { };
438-
}
439-
440426
/**
441427
* Checks if the {@code index} is within the bounds of the range from
442428
* {@code 0} (inclusive) to {@code length} (exclusive).
@@ -512,4 +498,15 @@ long checkFromToIndex(long fromIndex, long toIndex, long length) {
512498
long checkFromIndexSize(long fromIndex, long size, long length) {
513499
return Preconditions.checkFromIndexSize(fromIndex, size, length, null);
514500
}
501+
/**
502+
* {@return a new instance of an unspecified class}
503+
* The object has a unique identity; no other references to it exist.
504+
* It can be used for synchronization, or where a placeholder Object is needed.
505+
* Use this method to avoid relying on the {@linkplain Object#Object() Object constructor}.
506+
*
507+
* @since 17
508+
*/
509+
public static Object newIdentity() {
510+
return new Object() {};
511+
}
515512
}

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

+17-1
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, 2021, 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
@@ -45,6 +45,7 @@ public static void main(String... args) {
4545
errors += testIsNull();
4646
errors += testNonNull();
4747
errors += testNonNullOf();
48+
errors += testNewIdentity();
4849
if (errors > 0 )
4950
throw new RuntimeException();
5051
}
@@ -275,4 +276,19 @@ private static int testNonNullOf() {
275276
}
276277
return errors;
277278
}
279+
280+
private static int testNewIdentity() {
281+
int errors = 0;
282+
283+
Object o1 = Objects.newIdentity();
284+
Object o2 = Objects.newIdentity();
285+
286+
if (o1 == null || o2 == null)
287+
errors += 1;
288+
289+
if (o1 == o2)
290+
errors += 1;
291+
292+
return errors;
293+
}
278294
}

0 commit comments

Comments
 (0)
Please sign in to comment.