Home  >  Article  >  Java  >  What to learn about java programming

What to learn about java programming

清浅
清浅Original
2019-05-11 17:11:2121998browse

Java programming requires learning object-oriented, basic syntax, JSP, WebServer, and commonly used Java development tools and common frameworks. To learn java programming, you can use tools such as JBuilder, IDEA, and Eclipse.

What to learn about java programming

#Learn java programming step by step, practice more, and practice more. So what exactly do you need to learn about Java programming? Next, I will introduce it to you in detail in the article.

(Video tutorial: java course)

Object-oriented knowledge

JAVA is an object-oriented development language. Therefore, it is necessary to be familiar with object-oriented to learn JAVA. You need to master: what is an object, what is a class; what is encapsulation, what is polymorphism, what is inheritance; what is an abstract class, what is an interface. After understanding the concepts, you also need to know how these concepts are embodied, such as what is the difference between classes and objects? How are classes encapsulated?

JAVA Grammar

If If you have development experience in object-oriented languages ​​such as C, you can simply read the relevant books introducing JAVA. If you are a novice, you need to spend time to study the syntax of Java

JSP and HTML

Being a JAVA programmer is indispensable for dealing with JSP and HTML. Therefore, if you want to become a JAVA programmer, you must be familiar with JSP and HTML. It is best to know several built-in objects of JSP, such as Session, Request, Response, and commonly used JSP tags, such as include, userBean, etc. It would be better if you become more familiar with JS and CSS, which will make the pages you create more user-friendly.

WebServer

After you are familiar with the above three types, you can definitely say that you can create a JSP page, but the page must be run to see its effect. This requires you to be familiar with a WebServer, such as TOMCAT, RESIN, etc. You need to learn how to publish applications, how to use WebServer database resources, etc.

Development Tools

Development tools can help us develop better and faster, so it is necessary to be familiar with several development tools. Currently, the more popular JAVA development tools include JBuilder, IDEA, and Eclipse, and HTML development tools include Dreamweaver, etc.

Familiar with the framework

Familiar with the framework is actually an optional knowledge to become a JAVA programmer, but the development teams currently developing B/S structured applications are all similar. A framework will be used to build your own application system. Frameworks will have a lot of reusable code, good hierarchical relationships and business control logic. Framework-based development allows you to save a lot of development costs. Currently popular frameworks include Struts and Spring.

Related tutorials: java introductory tutorial

The above is the detailed content of What to learn about java programming. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:Can kotlin replace java?Next article:Can kotlin replace java?