RFR: 8261123: Augment discussion of equivalence classes in Object.equals and comparison methods
Joe Darcy
darcy at openjdk.java.net
Tue Feb 9 20:22:41 UTC 2021
On Tue, 9 Feb 2021 18:51:33 GMT, Daniel Fuchs <dfuchs at openjdk.org> wrote:
>> A follow-up of sorts to JDK-8257086, this change aims to improve the discussion of the relationship between Object.equals and compareTo and compare methods. The not-consistent-with-equals natural ordering of BigDecimal get more explication too. While updating Object, I added some uses of apiNote and implSpec, as appropriate. While a signum method did not exist when Comparable was added, it has existed for many years so I removed obsolete text that defined a "sgn" function to compute signum.
>>
>> Once the changes are agreed to, I'll reflow paragraphs and update the copyright years.
>
> src/java.base/share/classes/java/lang/Object.java line 81:
>
>> 79: * This integer need not remain consistent from one execution of an
>> 80: * application to another execution of the same application.
>> 81: * <li>If two objects are equal according to the {@link equals(Object) equals}
>
> I believe that should be: `{@link #equals(Object) equals}` (same a few line below).
The `{@link equals(Object) equals}` idiom does result in the desired link in the generated javadoc.
> src/java.base/share/classes/java/math/BigDecimal.java line 81:
>
>> 79: * modes of operation of the arithmetic defined in ANSI X3.274-1996
>> 80: * and ANSI X3.274-1996/AM 1-2000 (section 7.4). Unlike those
>> 81: * standards, {@code BigDecimal} includes many rounding modes
>
> Missing period at the end of the sentence (after "rounding modes")?
Quite right; will fix in the next push. Thanks.
-------------
PR: https://git.openjdk.java.net/jdk/pull/2471
More information about the core-libs-dev
mailing list