上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 41 下一页
摘要: package com.qf.demo02; import java.util.ArrayList; import java.util.Collection; import java.util.Iterator; public class Test3Iterator { public static 阅读全文
posted @ 2020-07-25 22:09 1769987233 阅读(211) 评论(0) 推荐(0) 编辑
摘要: package com.qf.demo01; import java.util.ArrayList; import java.util.Collection; import java.util.zip.CRC32; public class Test1Generics { public static 阅读全文
posted @ 2020-07-25 21:58 1769987233 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 1. 数组的局限 2. 集合 对比 3. collection package com.qf.demo02; import java.util.ArrayList; import java.util.Collection; public class Test5Collection { public 阅读全文
posted @ 2020-07-25 20:00 1769987233 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 1. math package com.qf.demo02; public class Test2Math { public static void main(String[] args) { System.out.println(Math.PI);//圆周率,3.141592653589793 S 阅读全文
posted @ 2020-07-25 19:42 1769987233 阅读(171) 评论(0) 推荐(0) 编辑
摘要: package com.qf.demo01; class Container{ String str = ""; public Container add(String s){ str += s; return this;//将当前的对象,作为返回值。 } } public class Test1S 阅读全文
posted @ 2020-07-25 19:19 1769987233 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 1. 字符串常量 package com.qf.demo01string; public class Test1String { public static void main(String[] args) { //1.字符串常量:双引号引起来的字符串的内容 //2.直接声明一个字符串:字符串池中。 阅读全文
posted @ 2020-07-25 18:58 1769987233 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 1. 8大基本类型 java是面向对象的语言,基本类型不是new出来的不能使用像object提供的方法,所以有了包装类 package com.qf.demo02; import javax.swing.text.InternationalFormatter; public class Test6I 阅读全文
posted @ 2020-07-25 18:29 1769987233 阅读(166) 评论(0) 推荐(0) 编辑
摘要: tostring和Python中的__str__魔法方法一样 equals 阅读全文
posted @ 2020-07-25 18:14 1769987233 阅读(68) 评论(0) 推荐(0) 编辑
摘要: package com.qf.demo01; //1.定义一个接口,抽象类 interface A{ public void test();//抽象方法 public void fun(); } //2.实现类,实现这个接口 //class A1 implements A{ // // @Overr 阅读全文
posted @ 2020-07-25 17:38 1769987233 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 1. 面向过程和面向对象 2. 类和对象 2.1 类 2.2 对象 2.3 实例化一个对象 2.4 构造方法 2.5 匿名对象 3. 面向对象的三大特性 3.1 封装 概念 修饰符 this 3.2 继承 概念 作用 关键词 extend 局限性 子类对象的执行过程 super关键字 重写 3.2 阅读全文
posted @ 2020-07-25 16:57 1769987233 阅读(96) 评论(0) 推荐(0) 编辑
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 41 下一页