Day 2 - Static
Read

Day 2 - Static

by VIshnu_Manohar

Code Snippets in JAVA Programming and their OUTPUTS-Day 2 CODE SNIPPETS OUTPUT STATIC Concept: Static Data Member is common to the entire class class General { private static int count=0; private int var=0; General() { count++; var++; System. out.... More

Read the publication