Click here to watch in Youtube :
https://www.youtube.com/watch?v=u1CoWaO49UY&list=UUhwKlOVR041tngjerWxVccw
Click the below Image to Enlarge
Java Tutorial : Java initializer block |
public class InstanceMemberInitializationTest { public int capacity; { System.out.println("Inside initializer block."); // initialize to 10 capacity = 10; } public static void main(String args[]) { System.out.println("capacity : " + new InstanceMemberInitializationTest().capacity); } }
Inside initializer block. capacity : 10
https://sites.google.com/site/javaee4321/java/InstanceMemberInitializeDemo-InitializerBlock-App.zip?attredirects=0&d=1
Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/InstanceMemberInitializeDemo-InitializerBlock-App
Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/41d9dfe14fcf9b8b617da7211fce54dcabe49f5c/BasicJava/InstanceMemberInitializeDemo-InitializerBlock-App/?at=master
See also:
No comments:
Post a Comment