You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by "Andrew James (Jira)" <ji...@apache.org> on 2021/09/24 23:28:00 UTC

[jira] [Created] (NETBEANS-6062) Static block not executed in Java Ant project

Andrew James created NETBEANS-6062:
--------------------------------------

             Summary: Static block not executed in Java Ant project
                 Key: NETBEANS-6062
                 URL: https://issues.apache.org/jira/browse/NETBEANS-6062
             Project: NetBeans
          Issue Type: Bug
    Affects Versions: 12.4
         Environment: NetBeans 12.4

Java 15.0.2 (Adopt Open JDK)

Windows 10
            Reporter: Andrew James


A simple Java Ant project in NetBeans 12.4 (using Java 15) does not execute the static code block, when the project is executed from within the IDE.

Steps to reproduce:

File > New Project > Java with Ant

Create two classes:

*1) Main.java*
{{ public class Main {}}
{{    public static void main(String args[]) { }}{{      System.out.println(Test.i); }}{{    }}}{{}}}

*2) Test.java*

{{class Test {}}
{{     static int i;}}
{{     static {}}
{{         i = 10;}}
{{     }}}
{{}}}

*Actual results:*

When the project is run from within the IDE, the output is "0". The static block in Test is not executed.

*Expected results:*

The expected output is "10". The static block in Test is executed.

*Note also:*

The JAR built by the project runs correctly, when executed from the command line, outside of the IDE.

The same code shown above also runs as expected in the IDE when built using a Java Maven project, instead of a Java Ant project.

This behavior does not appear when executing the same code, using NetBeans 12.0 and Java 11.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@netbeans.apache.org
For additional commands, e-mail: commits-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists