多选题 Given:
2. interface Plant {
3. int greenness = 7;
4. void grow();
5. }
6. class Grass implements Plant {
7. // static int greenness = 5;
8. // int greenness = 5;
9. public static void main(String[] args)
10. int greenness = 2;
11. new Grass().grow();
12. }
13. public void grow() {
14. System.out.println(++greenness);
15. } }
Which are true? (Choose all that apply.)
【正确答案】 C、D、E
【答案解析】