This is a list of Must-know in Java that I made with the help of my instructor.
As always, step by step, we will get there!
- Data types
- Variables (regional variable, member variable, static variable)
- Operators
- Control statement (condition statement, repeat statement)
Auxiliary control statement (break, continue) - Call Methods
(Call by Value, Call by Reference) - Arrays
- classes, objects, constructors, methods
- Access Controllers
- Date, Timestamp, Calendar
- String-related classes (String, StringBuffer, StringTokenizer)
- Inheritance
(Member variable, method, constructor) - Abstract classes, interface
- Collection, Generic
List, Map - Transform data type
- Basic data type conversion ex) double <---> int
- Data type conversion using a wrapper (basic data type <---> reference type)
ex) int <---> String Wrapper Class (Boxing and Unboxing)
int n = Integer.parseInt("20"); - Reference Type Transformation
- Exception handling
- Thread
- java.io.* (BufferedReader, FileReader, FileWriter, File)
- java.net.* (Socket Communications)
- java.sql.* (Database interlocking)
'Java' 카테고리의 다른 글
Java) Array (0) | 2022.09.04 |
---|---|
Java) .length vs length() (0) | 2022.09.02 |
Java) Conditional statements and loops (0) | 2022.08.30 |
Java) Data Types (0) | 2022.08.27 |
Java) Operators (0) | 2022.08.26 |