Example of a class variable (static variable)

Example of a class variable (static variable)

瀏覽:398
日期:2025-04-28
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...看更多