Java learning route (Java basics)-Java study notes

Written before the article: Personal study notes, welcome to Zhengzheng, thank you~


Preface

As a newbie who is just getting started, I have a little understanding of the Java language. The process of learning is like a blind person touching the elephant. The passion of learning at the beginning is gone, and I slowly become confused. I don’t know if what I learned will be useful in the future. Know how far you have to learn to go out and make money to support your family.

1. Java Foundation (JavaSE)

In order to give myself a clearer understanding of the Java language from a basic learning framework from the beginning of the learning period, I deliberately spent an afternoon on the Internet to organize a rough route, if the barriers are average, one by one knowledge point to overcome, and finally achieve The final goal.

1. Getting started with Java language

Java开发环境的基本配置
Java基本的语法
Java基础元素
Java开发工具的熟练使用
流程控制语句
数组

2.Java object-oriented

类与对象
构造方法
封装
继承
多态
抽象类
接口

3.Java commonly used classes (API)

Object类
String类
Math类
Date类
包装类

4. Java exception handling

异常概述与异常体系结构
常见异常
异常处理机制一:try-catch-finally
异常处理机制二:throws
手动抛出异常:throw

5.Java Collection Framework

Collection接口
List(ArrayList、LinkedList)
Set、Map
泛型

6.Java multithreaded development

线程
Thread、Runnable
线程的生命周期
线程安全
volatile
并发包、线程池死锁

7. Java IO style

输入流、输出流	
字节流、字符流
字节缓冲流、字符缓冲流

8.Java network programming

Socket原理
TCP UDP

9. Java new features

了解Java几大版本新特性

to sum up

There may be many people who want to take shortcuts like me-don't want to spend time on the basis of Java and directly learn the knowledge used in work.

But the foundation really cannot be skipped, and the subsequent Java-related technical content will be extended on these foundations. Such as: object-oriented, IO stream, collection, common API, these are often used in the future.

Only if you have a solid foundation can you go further. Otherwise, the difficulty of the content will increase afterwards. It is easy to find that you don't understand at all and there is no way to continue learning.

Take action with me, spend a month to lay a solid foundation for yourself, and then start a charge towards even more rare targets!

Guess you like

Origin blog.csdn.net/LinKin_Sheep/article/details/109277458