โ Back to Classes
Question 440
Instance Counter Class
Instance Counter Class
Create a classWidgetthat keeps a shared count of how many instances have been created. Use a public static int field namedCount, and increase it by one inside the constructor. Do not write aMainmethod. After creating threeWidgetobjects the program prints: 3
Expected Output:
3
Topics:
Classes
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.