fork download
  1. class WeatherTest {
  2.  
  3. static Weather w;
  4.  
  5. public static void main(String[] args) {
  6. System.out.print(w.RAINY.count + " " + w.Sunny.count + " ");
  7. }
  8.  
  9. enum Weather {
  10. RAINY, Sunny;
  11. int count = 0;
  12.  
  13. Weather() {
  14. System.out.print("c ");
  15. count++;
  16. }
  17. }
  18. }
Success #stdin #stdout 0.1s 320256KB
stdin
Standard input is empty
stdout
c c 1 1