To improve my English leval with the process of learning java,I will use English edit my java learing articles from now on.Perhaps there will have a lot of faults,such as word spell,grammatical errors or mislead information,if you find it,welcome to send it to me.Thanks all.
1.Some commen bug easy to make when learing java for the first time
2.The knowledge about the comment
Introduce:The text used to explain the program is a comment, which improves the readability of the code; commenting is a good programming habit that a programmer must have.
The type of comment:
(1)Single line comments://
(2)Multi-line comments:/* */
Ps:Multi-line comments are not allowed to be nested inside multi-line comments
(3) Document comments:/** ****** */
/**
* @author gdl
* @version 1.0
*/
public class javadoc{
public static void main(String[] args) {
System.out.println("love lxx");
}
}
3.Dos(Disk Operating System)
The knowledge learning in the article comes fromhttps://www.bilibili.com/video/BV1fh411y7R8?p=32https://www.bilibili.com/video/BV1fh411y7R8?p=32