摘要:
匿名内部类习题解 分析 题目: // 按照要求,补齐代码 interface Inter { void show(); } public class Outer { //补齐代码 } public class OuterDemo { public static void main(String[] 阅读全文
摘要:
While循环讲解 while 循环 do...while 循环 for 循环 在Java5中引入一种主要用于数组的增型for循环。 while 循环 while 循环是最基本的循环,他的结构为“ while(布尔表达式){ // 循环结构} 只要布尔表达式为true(默认的),循环就会一直继续下去 阅读全文