上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 51 下一页
摘要: 阅读全文
posted @ 2022-04-07 20:43 李林林 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 注意,如果有super()关键字或者重新实例化,会把普通代码块加到构造方法中。 阅读全文
posted @ 2022-04-07 09:03 李林林 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 1.什么是多态性 ①多态就是指程序中定义的引用变量所指向的具体类型和通过该引用变量发出的方法调用在编译时并不确定,而是在程序运行期间才确定 ②多态的存在有三个前提:1.要有继承关系2.子类要重写父类的方法3.父类引用指向子类对象 阅读全文
posted @ 2022-04-05 11:12 李林林 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 1.查看下面的代码有啥不一样的地方?试着运行一下查看一下结果吧。 package com.qx.test; public class A { int age = 20 ; void test() { System.out.println(age); } } class B extends A { i 阅读全文
posted @ 2022-04-05 11:10 李林林 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-04-04 15:06 李林林 阅读(21) 评论(0) 推荐(0) 编辑
摘要: package com.qx.shuzu; /** * 如何使用二维数组打印出如下形式; * 0 1 * 2 3 4 */ public class Entrance { public static void main(String[] args) { int intArray[][] = new 阅读全文
posted @ 2022-04-03 09:17 李林林 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 1.思考下面问题(记得画出内存指向示意图) package com.qx.courseTwo; public class Person { int age = 18 ; public Person(int age) { this.age = age; } } package com.qx.cours 阅读全文
posted @ 2022-04-03 09:16 李林林 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 1.对于基本数据类型,默认赋值为0 package com.qx.courseTwo; public class Person { int age; } package com.qx.courseTwo; public class Entrance { public static void main 阅读全文
posted @ 2022-04-03 08:51 李林林 阅读(66) 评论(0) 推荐(0) 编辑
摘要: package com.lll.demo; import javax.sound.midi.Soundbank; public class Demo5 { public static void main(String[] args) { int number[] = {9, 7, 5, 3, 1, 阅读全文
posted @ 2022-03-20 17:10 李林林 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 1.代码 package com.lll.demo; /** * 1.注意for循环第一次是先进入循环体,再执行自增运算 */ public class Demo3 { public static void main(String[] args) { // int i = 0; // while ( 阅读全文
posted @ 2022-03-20 15:53 李林林 阅读(24) 评论(0) 推荐(0) 编辑
上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 51 下一页