Example of a class variable (static variable)

Example of a class variable (static variable)

瀏覽:643
日期:2025-11-17
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...看更多