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;
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
add a comment
|
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
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 interfaceAwill not be initialized as per docs.oracle.com/javase/specs/jls/se12/html/…. It is only initialized when either the fieldaor the methodaInit()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
add a comment
|
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
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
java static lazy-initialization
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 interfaceAwill not be initialized as per docs.oracle.com/javase/specs/jls/se12/html/…. It is only initialized when either the fieldaor the methodaInit()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
add a comment
|
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 interfaceAwill not be initialized as per docs.oracle.com/javase/specs/jls/se12/html/…. It is only initialized when either the fieldaor the methodaInit()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
add a comment
|
1 Answer
1
active
oldest
votes
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.
add a comment
|
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
add a comment
|
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.
add a comment
|
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.
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.
answered Mar 28 at 14:46
manoutimanouti
56.6k13 gold badges92 silver badges136 bronze badges
56.6k13 gold badges92 silver badges136 bronze badges
add a comment
|
add a comment
|
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.
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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
Awill not be initialized as per docs.oracle.com/javase/specs/jls/se12/html/…. It is only initialized when either the fieldaor the methodaInit()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