How long does it take to learn java by yourself
#How long does it take to learn Java by yourself?
It generally takes half a year to 2 years to learn Java well.
The prerequisites are as follows:
● If you have basic knowledge of computer science, you can improve your learning efficiency.
● Guidance from people with Java work experience, or training from training institutions.
● There are actual projects to do. When working on projects, you can quickly gain access to new knowledge.
Learning opinions:
1. Watch "Thinking In Java", don't stop watching it just because it is difficult and we are beginners ourselves;
2. Don’t let go of any seemingly simple small programming problems - they are often not that simple, or they can lead to a lot of knowledge points;
3. Talk about fashionable technologies , it is better to keep the outdated technology in mind;
4. One of the best ways to learn programming is to read the source code;
5. Do not think that the book in your hand is at any time It's enough;
6. If you can understand the book, please read it carefully; if you can't understand the book, please read it bravely;
7. Don't expect to read the book for the first time. What can be remembered and mastered - please read the second and third times;
8. Don’t stay in the cradle of the integrated development environment, learn to control the integrated development environment, and learn to use the command line Processing programs;
9. The secret to learning programming is: program, program, program again;
10. Never fail to follow some rules that you are not proficient in just because the program is "small" ——Good habits are cultivated, not remembered once;
11. Don’t be confused by J2SE, J2EE, J2ME, remember, you only need JDK
12. Impetuous It’s easy for people to say: If you can’t speak XX language well, you should learn YY; - it’s you who can’t speak it! ?
13. Impetuous people tend to ask: What should I learn? - Don’t ask, just learn;
14. Impetuous people tend to ask: Does XX have a way to make money? ——I suggest you go rob a bank;
15. Impetuous people tend to say: I want the Chinese version! I can't speak English! --no? Learn!
16. Impetuous people tend to ask: Which one is better, XX or YY; - Let me tell you, both are good - as long as you learn;
17. There are two types of impetuous people: a) People who just watch without learning; b) People who only learn without persisting;
18. Save all the programs you have written - that is one of your best accumulations;
19. Please don’t be an impetuous person;
20. Please love JAVA!
The above is the detailed content of How long does it take to learn java by yourself. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Guide to Square Root in Java. Here we discuss how Square Root works in Java with example and its code implementation respectively.

Guide to Perfect Number in Java. Here we discuss the Definition, How to check Perfect number in Java?, examples with code implementation.

Guide to Random Number Generator in Java. Here we discuss Functions in Java with examples and two different Generators with ther examples.

Guide to the Armstrong Number in Java. Here we discuss an introduction to Armstrong's number in java along with some of the code.

Guide to Weka in Java. Here we discuss the Introduction, how to use weka java, the type of platform, and advantages with examples.

Guide to Smith Number in Java. Here we discuss the Definition, How to check smith number in Java? example with code implementation.

In this article, we have kept the most asked Java Spring Interview Questions with their detailed answers. So that you can crack the interview.

Java 8 introduces the Stream API, providing a powerful and expressive way to process data collections. However, a common question when using Stream is: How to break or return from a forEach operation? Traditional loops allow for early interruption or return, but Stream's forEach method does not directly support this method. This article will explain the reasons and explore alternative methods for implementing premature termination in Stream processing systems. Further reading: Java Stream API improvements Understand Stream forEach The forEach method is a terminal operation that performs one operation on each element in the Stream. Its design intention is
