Example of a class variable (static variable)

Example of a class variable (static variable)

瀏覽:1302
日期:2024-10-12
public class StaticVariable{ static int noOfInstances; StaticVariable(){ noOfInstances++; } public static void main(String[] args){ StaticVariable sv1 = new StaticVariable(); System.out.println("No. of instances for sv1 : " + sv1.noOfInstances); StaticVar...看更多