Java interface static field lazy initializationIs Java “pass-by-reference” or “pass-by-value”?Are static class variables possible in Python?Java inner class and static nested classHow do I read / convert an InputStream into a String in Java?When to use LinkedList over ArrayList in Java?How do I generate random integers within a specific range in Java?Difference between static class and singleton pattern?Initialization of an ArrayList in one lineHow do I declare and initialize an array in Java?Creating a memory leak with Java

Is there a connection between IT and Ghostbusters?

What's the purpose of autocorrelation?

What's the word for a student who doesn't register but goes to a class anyway?

Incorrect syntax near '+' in stored procedure sql server

Do household ovens ventilate heat to the outdoors?

Why would a fighter use the afterburner and air brakes at the same time?

Vertical Plots in Vertical Triangle

Get the encrypted payload from an unencrypted wrapper PDF document

FME Use Output of reader in another reader

What is the origin of the “clerics can create water” trope?

Why do we need to use transistors when building an OR gate?

Is a global DNS record a security risk for phpMyAdmin?

Who was Chief Poking Fire?

All numbers in a 5x5 Minesweeper grid

Why does Canada require a minimum rate of climb for ultralights of 300 ft/min?

Can one guy with a duplicator initiate a nuclear apocalypse?

Schelling's model of Segregation Python implementation with Geopandas (Follow-up)

Why do things cool down?

What is polynomial time?

Delete empty subfolders, keep parent folder

Is there any actual security benefit to restricting foreign IPs?

How do rulers get rich from war?

Nested array references

Should the pagination be reset when changing the order?



Java interface static field lazy initialization


Is Java “pass-by-reference” or “pass-by-value”?Are static class variables possible in Python?Java inner class and static nested classHow do I read / convert an InputStream into a String in Java?When to use LinkedList over ArrayList in Java?How do I generate random integers within a specific range in Java?Difference between static class and singleton pattern?Initialization of an ArrayList in one lineHow do I declare and initialize an array in Java?Creating a memory leak with Java






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















Given example



interface A 
static int aInit()
System.out.println("Interface field");
return 42;

int a = aInit();


class B implements A
static int bInit()
System.out.println("Class field");
return 42;

static final int b = bInit();


A a = new B();


on both JDK8 and JDK10 prints just "Class field". Direct access to A.a spawns its initialization and "Interface field" output.



This shows that interface static field initialization is lazy, which is not true for final static class field.



I can see OpenJDK JEP draft about such laziness for classes, but is it a documented feature for interface? Or just a detail of JVM implementation?










share|improve this question
























  • No, it shows that using a class doesn't necessarily load its implemented interfaces, notably not when there is no need to.

    – kumesana
    Mar 28 at 14:20






  • 1





    It is a documented behavior. The interface A will not be initialized as per docs.oracle.com/javase/specs/jls/se12/html/…. It is only initialized when either the field a or the method aInit() are called.

    – manouti
    Mar 28 at 14:27











  • @manouti indeed, T is a class and... – not applied for interfaces, thanks! Would you like to post it as an answer?

    – Alexey Adamovskiy
    Mar 28 at 14:38











  • @AlexeyAdamovskiy Sure, just posted it.

    – manouti
    Mar 28 at 14:47

















1















Given example



interface A 
static int aInit()
System.out.println("Interface field");
return 42;

int a = aInit();


class B implements A
static int bInit()
System.out.println("Class field");
return 42;

static final int b = bInit();


A a = new B();


on both JDK8 and JDK10 prints just "Class field". Direct access to A.a spawns its initialization and "Interface field" output.



This shows that interface static field initialization is lazy, which is not true for final static class field.



I can see OpenJDK JEP draft about such laziness for classes, but is it a documented feature for interface? Or just a detail of JVM implementation?










share|improve this question
























  • No, it shows that using a class doesn't necessarily load its implemented interfaces, notably not when there is no need to.

    – kumesana
    Mar 28 at 14:20






  • 1





    It is a documented behavior. The interface A will not be initialized as per docs.oracle.com/javase/specs/jls/se12/html/…. It is only initialized when either the field a or the method aInit() are called.

    – manouti
    Mar 28 at 14:27











  • @manouti indeed, T is a class and... – not applied for interfaces, thanks! Would you like to post it as an answer?

    – Alexey Adamovskiy
    Mar 28 at 14:38











  • @AlexeyAdamovskiy Sure, just posted it.

    – manouti
    Mar 28 at 14:47













1












1








1








Given example



interface A 
static int aInit()
System.out.println("Interface field");
return 42;

int a = aInit();


class B implements A
static int bInit()
System.out.println("Class field");
return 42;

static final int b = bInit();


A a = new B();


on both JDK8 and JDK10 prints just "Class field". Direct access to A.a spawns its initialization and "Interface field" output.



This shows that interface static field initialization is lazy, which is not true for final static class field.



I can see OpenJDK JEP draft about such laziness for classes, but is it a documented feature for interface? Or just a detail of JVM implementation?










share|improve this question














Given example



interface A 
static int aInit()
System.out.println("Interface field");
return 42;

int a = aInit();


class B implements A
static int bInit()
System.out.println("Class field");
return 42;

static final int b = bInit();


A a = new B();


on both JDK8 and JDK10 prints just "Class field". Direct access to A.a spawns its initialization and "Interface field" output.



This shows that interface static field initialization is lazy, which is not true for final static class field.



I can see OpenJDK JEP draft about such laziness for classes, but is it a documented feature for interface? Or just a detail of JVM implementation?







java static lazy-initialization






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 28 at 14:15









Alexey AdamovskiyAlexey Adamovskiy

5183 silver badges27 bronze badges




5183 silver badges27 bronze badges















  • No, it shows that using a class doesn't necessarily load its implemented interfaces, notably not when there is no need to.

    – kumesana
    Mar 28 at 14:20






  • 1





    It is a documented behavior. The interface A will not be initialized as per docs.oracle.com/javase/specs/jls/se12/html/…. It is only initialized when either the field a or the method aInit() are called.

    – manouti
    Mar 28 at 14:27











  • @manouti indeed, T is a class and... – not applied for interfaces, thanks! Would you like to post it as an answer?

    – Alexey Adamovskiy
    Mar 28 at 14:38











  • @AlexeyAdamovskiy Sure, just posted it.

    – manouti
    Mar 28 at 14:47

















  • No, it shows that using a class doesn't necessarily load its implemented interfaces, notably not when there is no need to.

    – kumesana
    Mar 28 at 14:20






  • 1





    It is a documented behavior. The interface A will not be initialized as per docs.oracle.com/javase/specs/jls/se12/html/…. It is only initialized when either the field a or the method aInit() are called.

    – manouti
    Mar 28 at 14:27











  • @manouti indeed, T is a class and... – not applied for interfaces, thanks! Would you like to post it as an answer?

    – Alexey Adamovskiy
    Mar 28 at 14:38











  • @AlexeyAdamovskiy Sure, just posted it.

    – manouti
    Mar 28 at 14:47
















No, it shows that using a class doesn't necessarily load its implemented interfaces, notably not when there is no need to.

– kumesana
Mar 28 at 14:20





No, it shows that using a class doesn't necessarily load its implemented interfaces, notably not when there is no need to.

– kumesana
Mar 28 at 14:20




1




1





It is a documented behavior. The interface A will not be initialized as per docs.oracle.com/javase/specs/jls/se12/html/…. It is only initialized when either the field a or the method aInit() are called.

– manouti
Mar 28 at 14:27





It is a documented behavior. The interface A will not be initialized as per docs.oracle.com/javase/specs/jls/se12/html/…. It is only initialized when either the field a or the method aInit() are called.

– manouti
Mar 28 at 14:27













@manouti indeed, T is a class and... – not applied for interfaces, thanks! Would you like to post it as an answer?

– Alexey Adamovskiy
Mar 28 at 14:38





@manouti indeed, T is a class and... – not applied for interfaces, thanks! Would you like to post it as an answer?

– Alexey Adamovskiy
Mar 28 at 14:38













@AlexeyAdamovskiy Sure, just posted it.

– manouti
Mar 28 at 14:47





@AlexeyAdamovskiy Sure, just posted it.

– manouti
Mar 28 at 14:47












1 Answer
1






active

oldest

votes


















1
















It is a documented behavior. The interface A will not be initialized as per https://docs.oracle.com/javase/specs/jls/se12/html/jls-12.html#jls-12.4.1. It is only initialized when either the field a or the method aInit() are called.






share|improve this answer
























    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );














    draft saved

    draft discarded
















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55399813%2fjava-interface-static-field-lazy-initialization%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1
















    It is a documented behavior. The interface A will not be initialized as per https://docs.oracle.com/javase/specs/jls/se12/html/jls-12.html#jls-12.4.1. It is only initialized when either the field a or the method aInit() are called.






    share|improve this answer





























      1
















      It is a documented behavior. The interface A will not be initialized as per https://docs.oracle.com/javase/specs/jls/se12/html/jls-12.html#jls-12.4.1. It is only initialized when either the field a or the method aInit() are called.






      share|improve this answer



























        1














        1










        1









        It is a documented behavior. The interface A will not be initialized as per https://docs.oracle.com/javase/specs/jls/se12/html/jls-12.html#jls-12.4.1. It is only initialized when either the field a or the method aInit() are called.






        share|improve this answer













        It is a documented behavior. The interface A will not be initialized as per https://docs.oracle.com/javase/specs/jls/se12/html/jls-12.html#jls-12.4.1. It is only initialized when either the field a or the method aInit() are called.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 28 at 14:46









        manoutimanouti

        56.6k13 gold badges92 silver badges136 bronze badges




        56.6k13 gold badges92 silver badges136 bronze badges





















            Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







            Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.




















            draft saved

            draft discarded















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55399813%2fjava-interface-static-field-lazy-initialization%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

            용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

            155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해