/
githubmirror
/
riscv-port
Обзор
Документация
Войти
/
githubmirror
/
riscv-port
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/java.base/share/classes/java/lang/doc-files/ValueBased.html
84 строки
4 KB
David Simms
8389219: Implement JEP 401: Value Objects (Preview)
31 июл 2026, 03:45
31 июл 2026, 03:45
cc278db
Код
Авторство
О чём код?
<!doctype html> <!-- Copyright (c) 2013, 2026, Oracle and/or its affiliates. All rights reserved. DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This code is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 only, as published by the Free Software Foundation. Oracle designates this particular file as subject to the "Classpath" exception as provided by Oracle in the LICENSE file that accompanied this code. This code is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License version 2 for more details (a copy is included in the LICENSE file that accompanied this code). You should have received a copy of the GNU General Public License version 2 along with this work; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA or visit www.oracle.com if you need additional information or have any questions. --> <html lang="en"> <head> <title>Value-based Classes</title> </head> <body> <h1 id="ValueBased">{@index "Value-based Classes"}</h1> Some classes, such as {@code java.lang.Integer} and {@code java.time.LocalDate}, are <em>value-based</em>. In a future release, they may become value classes (JLS {@jls value-objects-8.1.1.5}). <p>A value-based class has the following properties:</p> <ul> <li>all instance fields declared in the class and all of its superclasses are final (though these may contain references to mutable objects);</li> <li>the class's implementations of {@code equals}, {@code hashCode}, and {@code toString} compute their results solely from the values of the class's instance fields (and the members of the objects they reference), not from the instance's identity;</li> <li>the class's methods treat instances as <em>freely substitutable</em> when equal, meaning that interchanging any two instances {@code x} and {@code y} that are equal according to {@code equals()} produces no visible change in the behavior of the class's methods;</li> <li>the class performs no synchronization using an instance's monitor;</li> <li>the class does not declare, or discourages use of, accessible constructors (because each constructor call promises a unique identity);</li> <li>the class does not provide any instance creation mechanism that promises a unique identity on each method call—in particular, any factory method's contract must allow for the possibility that if two independently-produced instances are equal according to {@code equals()}, they may also be equal according to {@code ==};</li> <li>the class is final, and extends either {@code Object} or a hierarchy of abstract classes.</li> </ul> <p>When two instances of a value-based class are equal (according to `equals`), a program should not attempt to distinguish between their identities, whether directly via reference equality {@code ==} or indirectly via an appeal to synchronization, identity hashing, serialization, or any other identity-sensitive mechanism.</p> <p>Synchronization on instances of value-based classes is strongly discouraged, because the programmer cannot guarantee exclusive ownership of the associated monitor.</p> <p>When preview features are enabled, some value-based classes become value classes. Instances of these classes become value objects, which have different identity-related behaviors compared to identity objects:</p> <ul> <li>Previously distinguishable instances, such as those created from distinct constructor invocations (See JLS {@jls value-objects-15.9.4}), may be no longer distinguishable via {@code ==}. <li>The use of value objects for synchronization or with {@linkplain java.lang.ref.Reference object references} results in {@link IdentityException}. </ul> </body> </html>