First, I 'd like to say sorry. During this time, because it was close to milestone, the time was very tight, so the content was not updated in a timely manner. In addition, the book thinking in Java, which was launched last time, seems to be too thick and involves many aspects. Besides, due to the background of the author, some methods of description and Chapter arrangement may cause some obstacles to understanding for beginners. Therefore, I found some books of the same type for reference. Therefore, in a period of time, there may be multiple Reading Notes for a certain field for your reference. It is hereby stated.
Now, go to the topic and start taking notes!
Books
Peter van der Liden, author of The Java2 tutorial (fifth edition), published by e-Industry Publishing House.
I. Basic Knowledge:
1 Java2 provides eight basic types:
Type
Byte
Short
Int
Long
Char
Float
Double
Bollean
2 in Java, except for the eight basic types, the others are composed of classes. At the beginning, we can first understand the class as a user-defined type.
3 According to the habit, the name of the Java class should start with an uppercase letter, and the file name of the class where the main () is stored should be the same as that of the class.
My colleagues started to rush again ~