摘要: 1.什么是枚举类?当类的对象个数有限且确定,我们认为这是枚举类2.为什么使用枚举类?当需要定义一组常量时,我们强烈建议使用枚举类。3.不使用枚举类行不行?如果类的对象只有一个,我们建议使用单例即可。4.经典实例演示Talk is cheap! Show me your code!public class Test1 { public static void main(Strin... 阅读全文
posted @ 2020-10-21 09:13 大洋游侠1 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 1.java中多线程一个Java应用程序java.exe,其实至少三个线程:main()主线程,gc()垃圾回收线程,异常处理线程。当然如果发生异常,会影响主线程。2.创建多线程的几种方式Talk is cheap! Show me your code !①继承Thread类的方式* A thread is a thread of execution in a program. The ... 阅读全文
posted @ 2020-10-21 09:12 大洋游侠1 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 1.异常体系结构ThrowableThe {@code Throwable} class is the superclass of all errors and exceptions in the Java language.ErrorAn {@code Error} is a subclass of {@code Throwable} that indicates serious pr... 阅读全文
posted @ 2020-10-21 09:09 大洋游侠1 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 1.基本数据类型2.集合数据类型2.1集合数据类型测试假设某表有如下一行,我们用 JSON 格式来表示其数据结构。在 Hive 下访问的格式为:{ "name": "songsong", "friends": ["bingbing" , "lili"] , //列表 Array, "children": { ... 阅读全文
posted @ 2020-10-20 09:34 大洋游侠1 阅读(107) 评论(0) 推荐(0) 编辑