At what level can I learn Java by myself and be able to work?
Jul 03, 2020 pm 04:08 PMSelf-taught Java to be able to work requires: 1. Need to have project development experience, one year of experience in Java development projects or more; 2. Reasonable learning cycle plan; 3. Strong will to form daily learning habits.
Self-teaching Java to be able to work requires:
First: What technical level needs to be achieved To get a job?
Since it is for employment, you need to know what technical level you need to achieve to learn Java programming technology in order to get a Java development job. Just like a score line for the college entrance examination, whether you can be admitted to a university depends on whether you can pass the score line. There are also standards for software companies to hire you, so first of all you need to know what level you should be able to reach by learning Java programming technology before you can get a job.
Current industry employment standards: Experience in project development is required. One year of experience in Java development projects or more. You can participate in the development of project modules one week after joining the company.
Second: Make it clear what Java technologies need to be learned by enterprises
The technology in the IT industry updates relatively quickly, so we must learn the technologies that enterprises need now. Rather than some obsolete technology. So as someone who started learning Java from scratch, you should understand what technologies you need to learn now, and these will be the things you want to overcome.
Third: Reasonable study cycle plan
Reasonable study plan cycle. If you want to learn a very professional technology, you must not learn it blindly. It is necessary to learn all the content in chunks. The content of each day is fixed. There is a word for learning programming called "step by step". There can be no rush or delay. The amount of learning every day should be about the same, and then you should complete the daily knowledge and master it. You should be clear about how many exercises you do every day and what homework you complete.
This depends on your learning ability, acceptance, and how much time you spend every day to learn a reasonable cycle.
Example: If there are 8 hours a day, the recommended total duration is 5 months.
Fourth: Have a technical master to guide you
If you are determined to learn Java programming technology well, you need to have a skilled person to guide you in the early stage. People who learn Java programming technology by themselves do not actually want to learn it well. Most of them want to get something in return without giving. Because Java programming technology is very professional, someone must take care of it in the early stage. The main reason is that problems cannot be solved, and the efficiency of solving them is very low. The more you learn, the more confused you become, which ultimately leads to a waste of time. There is a lack of communication with professional people. After all, high salaries are not earned casually. If everyone can learn Java by themselves, then you should be a person with strong learning ability like 985 and 211. Since you are not from this industry and know nothing about how to learn programming, you will definitely take many detours and eventually give up.
Fifth: Be determined and form a daily study habit
After the above four points are solved, what is left is to study every day for half a year. According to the people I have interacted with, most people will give up halfway. The main reason is that the desire value is very low. If you want to get something, you must be very eager and pay a lot. Most people are not like this. Therefore, it is important to strengthen your determination to learn Java programming technology.
If you have any questions about learning Java (learning methods, learning efficiency, how to get a job), you can consult me ??at any time. This is my Java exchange learning qun: 615 in the front and 615 in the middle Seven-four-one, followed by six-three-six. Exchange questions and help each other. There are good learning tutorials and development tools in the group.
Some of the most common problems and misunderstandings faced by beginners when learning Java:
1. Blindly watch videos without thinking, but rarely practice. The normal state should be that during the entire learning process, three-quarters of the time is spent practicing. The video only lets you know what to study, just watch it once. There are many people who mindlessly watch videos and end up wasting several months and unable to find a job.
2. When a novice starts studying, reading is a very serious misunderstanding. Therefore, novices should not read books to learn programming. As for the reason, I won't explain too much here.
3. Many people encounter a problem, that is, they can understand the code but cannot write it. This is a relatively common problem.
4. There is also the most practical problem, which is that after learning the latter, you forget the previous. This is because there is a big mistake in the learning methods and methods.
5. The entire learning process is chaotic, there is no systematic arrangement, the learning is not systematic and professional, and the technology is not mastered well, which wastes several months or even half a year.
6. Lack of communication with professionals. As a novice, in the early stages of learning, the most things I learned must be from others, working behind closed doors.
Related learning recommendations: Java video tutorial
The above is the detailed content of At what level can I learn Java by myself and be able to work?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undress AI Tool
Undress images for free

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

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

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

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

The settings.json file is located in the user-level or workspace-level path and is used to customize VSCode settings. 1. User-level path: Windows is C:\Users\\AppData\Roaming\Code\User\settings.json, macOS is /Users//Library/ApplicationSupport/Code/User/settings.json, Linux is /home//.config/Code/User/settings.json; 2. Workspace-level path: .vscode/settings in the project root directory

To correctly handle JDBC transactions, you must first turn off the automatic commit mode, then perform multiple operations, and finally commit or rollback according to the results; 1. Call conn.setAutoCommit(false) to start the transaction; 2. Execute multiple SQL operations, such as INSERT and UPDATE; 3. Call conn.commit() if all operations are successful, and call conn.rollback() if an exception occurs to ensure data consistency; at the same time, try-with-resources should be used to manage resources, properly handle exceptions and close connections to avoid connection leakage; in addition, it is recommended to use connection pools and set save points to achieve partial rollback, and keep transactions as short as possible to improve performance.

Full screen layout can be achieved using Flexbox or Grid. The core is to make the minimum height of the page the viewport height (min-height:100vh); 2. Use flex:1 or grid-template-rows:auto1frauto to make the content area occupy the remaining space; 3. Set box-sizing:border-box to ensure that the margin does not exceed the container; 4. Optimize the mobile experience with responsive media query; this solution is compatible with good structure and is suitable for login pages, dashboards and other scenarios, and finally realizes a full screen page layout with vertical centering and full viewport.

Selecting the Java SpringBoot React technology stack can build stable and efficient full-stack web applications, suitable for small and medium-sized to large enterprise-level systems. 2. The backend uses SpringBoot to quickly build RESTfulAPI. The core components include SpringWeb, SpringDataJPA, SpringSecurity, Lombok and Swagger. The front-end separation is achieved through @RestController returning JSON data. 3. The front-end uses React (in conjunction with Vite or CreateReactApp) to develop a responsive interface, uses Axios to call the back-end API, and ReactRouter

Use performance analysis tools to locate bottlenecks, use VisualVM or JProfiler in the development and testing stage, and give priority to Async-Profiler in the production environment; 2. Reduce object creation, reuse objects, use StringBuilder to replace string splicing, and select appropriate GC strategies; 3. Optimize collection usage, select and preset initial capacity according to the scene; 4. Optimize concurrency, use concurrent collections, reduce lock granularity, and set thread pool reasonably; 5. Tune JVM parameters, set reasonable heap size and low-latency garbage collector and enable GC logs; 6. Avoid reflection at the code level, replace wrapper classes with basic types, delay initialization, and use final and static; 7. Continuous performance testing and monitoring, combined with JMH

fixture is a function used to provide preset environment or data for tests. 1. Use the @pytest.fixture decorator to define fixture; 2. Inject fixture in parameter form in the test function; 3. Execute setup before yield, and then teardown; 4. Control scope through scope parameters, such as function, module, etc.; 5. Place the shared fixture in conftest.py to achieve cross-file sharing, thereby improving the maintainability and reusability of tests.

itertools.combinations is used to generate all non-repetitive combinations (order irrelevant) that selects a specified number of elements from the iterable object. Its usage includes: 1. Select 2 element combinations from the list, such as ('A','B'), ('A','C'), etc., to avoid repeated order; 2. Take 3 character combinations of strings, such as "abc" and "abd", which are suitable for subsequence generation; 3. Find the combinations where the sum of two numbers is equal to the target value, such as 1 5=6, simplify the double loop logic; the difference between combinations and arrangement lies in whether the order is important, combinations regard AB and BA as the same, while permutations are regarded as different;

DependencyInjection(DI)isadesignpatternwhereobjectsreceivedependenciesexternally,promotingloosecouplingandeasiertestingthroughconstructor,setter,orfieldinjection.2.SpringFrameworkusesannotationslike@Component,@Service,and@AutowiredwithJava-basedconfi
