摘要: 1. LinkeList package com.qf.demo01; import java.util.LinkedList; import java.util.List; import java.util.concurrent.SynchronousQueue; /* * 接口A: * add( 阅读全文
posted @ 2020-07-25 22:48 1769987233 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-07-25 22:32 1769987233 阅读(155) 评论(0) 推荐(0) 编辑
摘要: package com.qf.demo03; import java.util.ArrayList; import java.util.List; public class Test5List { public static void main(String[] args) { //step1:创建 阅读全文
posted @ 2020-07-25 22:30 1769987233 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 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) 编辑
摘要: Java中的数据了类型:两大类(基本类型和引用类型) 基本类型:又叫简单类型。直接赋值数值即可。4类8种 byte,short,int,long,float,double,char,boolean 引用类型:存储的地址。操作引用。默认值都是null String,数组,Person类,Student 阅读全文
posted @ 2020-07-25 15:37 1769987233 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 1、接口可以多实现:一个实现类可以同时实现多个接口 package com.qf.demo02_interface; //定义一种规则: interface A{ public void testA();// public void fun(); } //定义另一种规则 interface B{ p 阅读全文
posted @ 2020-07-25 15:34 1769987233 阅读(202) 评论(0) 推荐(0) 编辑