CJCoding With Joseph

Instance Counter Class

Create a class Widget that keeps a shared count of how many instances have been created. Use a public static int field named Count, and increase it by one inside the constructor. Do not write a Main method.

After creating three Widget objects 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.