Java Common pen Questions < two >

Source: Internet
Author: User

1. Output order of static code block, non-static code block, constructor function

Case one: When the parent class is not inherited

1 classHelloa {2     3      PublicHelloa () {4System.out.println ("I ' M A class");5     }6 7     Static {8System.out.println ("Static A");9     }Ten      One     { ASystem.out.println ("A"); -     } -  the      Public Static voidMain (string[] args) { -         NewHelloa (); -         NewHelloa (); -     } +}

Output Result:

Static A
A
I ' M A class
A
I ' M A class

Analysis: The output order is: Static code block > Non-static code block > constructor, and no matter how many times the class static code block is executed only once, so the general situation of memory-intensive connection or other in the static code block, access speed, and only access once, save consumption.

Case two: When inheriting from a parent class

classHelloaextendshellob{ PublicHelloa () {System.out.println ("I ' M A class"); }    Static{System.out.println ("Static A"); } {System.out.println (A); }     Public Static voidMain (string[] args) {NewHelloa (); }}classHellob { PublicHellob () {System.out.println ("I ' M B class"); }    Static{System.out.println ("Static B"); } {System.out.println (B); }}

Operation Result:

Static B
Static A
B
I ' M B class
A
I ' M A class

Parsing: Output order: Parent class static code block > Subclass Static code block > parent non-static code block > Parent class constructor > subclass non-static code block > Subclass constructor;

Java Common pen Questions < two >

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.