CJCoding With Joseph

Count Instances With a Static Field

Create a class Widget with a private static int count. Each time a Widget is constructed, increase the shared count by 1. A static method Count() returns how many widgets have been created. Do not write a Main method.

After creating 3 widgets the program prints:
3

Expected Output:

3
Topics:
Encapsulation
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.