溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

如何解決Java中Lombok @Value注解導(dǎo)致的variable not been initialized問題

發(fā)布時(shí)間:2021-07-28 19:13:23 來源:億速云 閱讀:422 作者:chen 欄目:開發(fā)技術(shù)

本篇內(nèi)容介紹了“如何解決Java中Lombok @Value注解導(dǎo)致的variable not been initialized問題”的有關(guān)知識,在實(shí)際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

目錄
  • 背景

  • 解決

背景

想要修改一個(gè)POJO類,在其中增加一個(gè)字段,但是增加以后就開始報(bào)錯:

如何解決Java中Lombok @Value注解導(dǎo)致的variable not been initialized問題

  • 該類已經(jīng)存在一個(gè)構(gòu)造函數(shù),為了不破壞該類原來的使用方式,于是重新寫了一個(gè)構(gòu)造方法,之前的構(gòu)造函數(shù)未改動。

  • 該類被Lombok的@Value注解修飾

解決

  • 報(bào)錯信息顯示,變量未被初始化。于是主要排查是否有被初始化。

  • 在重寫的構(gòu)造方法中,我已經(jīng)對該變量進(jìn)行了初始化。

  • 不明所以,開始找不同,這個(gè)類中,唯一不熟悉的就是@Value注解,于是查看注解中的注釋:

/**
 * Generates a lot of code which fits with a class that is a representation of an immutable entity.
 *<p>
* Equivalent to {@code@Getter @FieldDefaults(makeFinal=true, level=AccessLevel.PRIVATE) @AllArgsConstructor @ToString @EqualsAndHashCode}.
 *<p>
* Complete documentation is found at<a href="<https://projectlombok.org/features/Value>" rel="external nofollow" >the project lombok features page for&#64;Value</a>.
 *
 *@seelombok.Getter
*@seelombok.experimental.FieldDefaults
*@seelombok.AllArgsConstructor
*@seelombok.ToString
*@seelombok.EqualsAndHashCode
*@seelombok.Data
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.SOURCE)
public @interface Value {
 /**
  * If you specify a static constructor name, then the generated constructor will be private, and
  * instead a static factory method is created that other classes can use to create instances.
  * We suggest the name: "of", like so:
  * 
  * <pre>
  *     public @Value(staticConstructor = "of") class Point { final int x, y; }
  * </pre>
  * 
  * Default: No static constructor, instead the normal constructor is public.
  * 
  * @return Name of static 'constructor' method to generate (blank = generate a normal constructor).
  */
 String staticConstructor() default "";
}

這個(gè)注解的作用是為一個(gè)不可變的實(shí)體類生成一系列與之匹配的代碼。效果等同于以下注解的組合:@Getter @FieldDefaults(makeFinal=true, level=AccessLevel.PRIVATE) @AllArgsConstructor @ToString @EqualsAndHashCode。

這其中有一個(gè)注解比較特殊,@FieldDefaults(makeFinal=true, level=AccessLevel.PRIVATE),見名知意,這是一個(gè)為字段設(shè)置默認(rèn)屬性的注解,注解的屬性值中,標(biāo)注了是否設(shè)置實(shí)例字段為final,訪問級別設(shè)置為private。

/**
 * Adds modifiers to each field in the type with this annotation.
 *<p>
* Complete documentation is found at<a href="<https://projectlombok.org/features/experimental/FieldDefaults>" rel="external nofollow" >the project lombok features page for&#64;FieldDefaults</a>.
 *<p>
* If {@codemakeFinal} is {@codetrue}, then each (instance) field that is not annotated with {@code@NonFinal} will have the {@codefinal} modifier added.
 *<p>
* If {@codelevel} is set, then each (instance) field that is package private (i.e. no access modifier) and does not have the {@code@PackagePrivate} annotation will
 * have the appropriate access level modifier added.
 */
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.SOURCE)
public @interface FieldDefaults {
 AccessLevel level() default AccessLevel.NONE;
 boolean makeFinal() default false;
}

若makeFinal是true,則每個(gè)實(shí)例字段(被@NonFinal注解修飾的除外)都會被final修飾符修飾。
若level屬性有值,那么每個(gè)包私有訪問的(即沒有訪問修飾符修飾)和沒有被@PackagePrivate注解修飾的實(shí)例字段都會被添加一個(gè)與屬性值對應(yīng)的修飾符。

也就是說,@Value標(biāo)記了此POJO類為不可能變的類,其所有沒有被@NonFinal注解修飾的成員變量,都會被final修飾

事情到了這里,還是不知道問題在哪里(Java基礎(chǔ)差)。繼續(xù)找解決辦法。

Google搜索找到此問答:

Lombok @Wither, @Value, @NoArgsConstructor, @AllArgsConstructor do not work together

回答中有一段對于Java final的描述:

A final variable can only be initialized once, either via an initializer or an assignment statement. It does not need to be initialized at the point of declaration: this is called a "blank final" variable. A blank final instance variable of a class must be definitely assigned in every constructor of the class in which it is declared; similarly, a blank final static variable must be definitely assigned in a static initializer of the class in which it is declared; otherwise, a compile-time error occurs in both cases.

翻譯如下:
一個(gè)final修飾的變量只能通過初始化器或賦值語句初始化一次。它不需要在聲明處初始化:這被稱為“空白final”變量。類的空白final實(shí)例變量必須在聲明它的類的每個(gè)構(gòu)造函數(shù)中確定賦值;同樣,空白final靜態(tài)變量必須在聲明它的類的靜態(tài)初始化器中明確賦值;否則,以上兩種情況下都會發(fā)生編譯錯誤。

真相大白,原因是在原來的構(gòu)造器中沒有對新加入的字段進(jìn)行初始化。至此,問題解決。

“如何解決Java中Lombok @Value注解導(dǎo)致的variable not been initialized問題”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI