多选题
Given:
1. public class WeatherTest {
2. static Weather w;
3. public static void main(String[] args) {
4. System.out.print(w.RAINY.count + " " + w. Sunny . count + " ");
5. }
6. }
7. enum Weather {
8. RAINY, Sunny;
9. int count = 0;
10. Weather() {
11. System.out.print("c ");
12. count++;
13. }
14. }
What is the result?