- class Fu
- {
- boolean show(char a)
- {
- System.out.println(a)
- return true;
- }
- }
- class Demo extends Fu
- {
- public static void main(String[] args)
- {
- int i =0;
- Fu f =new Demo();
- Demo d = new Demo();
- for(f.show('A');f.show('B')&&(i<2);f.show('C'))
- {
- i++;
- d.show('D');
-
- }
-
- }
- boolean show(char a)
- {
- System.out.println(a)
- return false;
- }
- }
复制代码
这题的输出结果是什么?不是很明白!请帮忙解释一下!谢谢! |