The source code is for testing only and should not be used commercially. The source code comes from the Internet. If there is any infringement, please contact me to remove it.
Java 14 新特性之JEP 359 Records(Preview)

1. preface

This month (2020-03) Java 14 It's time for official release, there is one Java Characteristics that the community has been calling for a long time will serve as preview featureincluded in Java 14 Middle, this is JEP 359: Records。In other words, the effect is similar lombok the @Data Annotations, but not exactly, we finally don't have to write boilerplate code in the right scenario. Today we will come and feel it.

is actually more like Jvm language kotlin Data class in

2. Traditional data classes

Let's take a look at how we now declare a data class:

public class Range {

    private final int min;
    private final int max;

    public Range(int min, int max) {
        this.min = min;
        this.max = max;
    }

    public int getMin() {
        return min;
    }

    public int getMax() {
        return max;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        Range range = (Range) o;
        return min == range.min && max == range.max;
    }

    @Override
    public int hashCode() {
        return Objects.hash(min, max);
    }

    @Override
    public String toString() {
        return "Range{" +
          "min=" + min +
          ", max=" + max +
          '}';
    }
}

Let's take a look at the characteristics of this class:

  • There is no parameterless constructor, so you need to assign values to member variables during initialization
  • Member variables only getter method.
  • Overwritten superclasses Object the equalshashCodetoString method.

Although we can use third-party frameworks or IDE It's easy to write these boilerplate codes, but you have to write them anyway, right?

3. New Java Records

The verbose code above is in Java 14 We can write this way:

public record Range(int min, int max) {}

That's right. It's simple! Does this grammatical sugar have a "f * cking" feeling? We declare this type of use record Logo (I don't know whether record will rise to the level of a keyword). when you use record When a class is declared, it automatically has the following functions:

  • A simple way to get member variables, take the above code as an example min() and max() 。Pay attention to different things from our usualgetterof writing.
  • a equals Method, all member attributes of the class are compared when performing a comparison
  • rewrite equals Of course I have to rewrite it hashCode
  • A that prints all member properties of this class toString method.
  • Please note that there will only be one constructor.

Because this characteristic is preview feature, cannot be compiled and executed by default. Also taking the above example we need to implement:

 $ javac -d classes --enable-preview --release 14 Range.java
 $ java -classpath classes --enable-preview Range

in Jshell running in

jshell> Range r = new Range(10, 20);
r ==> Range[min=10, max=20]

jshell> r.min()
$5 ==> 10

jshell> r.toString()
$6 ==> "Range[min=10, max=20]"

jshell> r
r ==> Range[min=10, max=20]

although record The declared class does not final Keyword, in fact, it is an immutable class. Except for some limitations, it remains an ordinaryJava Class. Therefore, we can add logic just like we add normal classes. We can enforce prerequisites when constructing an instance:

public record Range(int min, int max) {
    public Range { 
        if (min >= max) 
            throw new IllegalArgumentException("min should be less than max");
    }
}

In addition, we can also provide Records Add ordinary methods, static attributes, and static methods to class, and no examples will be given here;

To simplify reasoning about grammatical sugar, member attributes cannot be declared within a class.The following is an example of the error:

public record Range(int min, int max) {
    //Wrong demonstration 
    private String name;
}

4. summary

Today's response to the upcoming Java 14 Preview features of Java Records An introduction was made. with Java Accelerate version iteration,Java It has gradually kept up with the pace of the times, and hopes that this great language will continue to be full of vitality.

read more
Resource download
PriceFree
The use is limited to testing, experiments, and research purposes. It is prohibited for all commercial operations. This team is not responsible for any illegal behavior of users during use. Please self-test all source codes! There is no guarantee of the integrity and validity of your source code. All source code is collected from the entire network
Original link:https://bcbccb.cn/en/4465.html, please indicate the source for reprinting. Disclaimer: This resource has not been authorized by the original rights holder and is not commercially available. It can only be used to learn and analyze the underlying code, CSS, etc., and is prohibited for commercial purposes. Any relevant disputes and legal liabilities arising from unauthorized commercial use shall be fully borne by the user. Everyone is responsible to support genuine copies. Please delete them within 24 hours after downloading. Thank you for your support!
1

Comments0

七星游戏源码搭建教程详细文档说明
Seven Star Games source code construction tutorial detailed document description
Someone bought it 9 minutes ago Go and have a look

Site Announcements

The source code (theme/plug-in/application source code) and other resources provided by this site are only for learning and exchange

Commercial use is prohibited, otherwise all consequences will be borne by the downloading user!

Some resources are collected or copied online. If they infringe on your legitimate rights and interests, please write to us.

Currently, members have a big reward, and the current price for a lifetime member is 299 gold coins.Recent price adjustments

Join quickly, opportunities wait for no one! immediately participated in

Captcha

Fast login to social accounts

en_USEnglish