Want to Big cow, Java development of the necessary technical points you understand it?

Source: Internet
Author: User
Tags time and date


Java is an object-oriented programming language that can compose cross-platform application software. Java technology, with its versatility, efficiency, platform portability and security, is widely used in PCs, data centers, game consoles, science supercomputers, mobile phones, and the Internet, while owning the world's largest developer professional community.
1.Java operation (Basic prerequisites)
This one may look very simple, Java program run who does not? But many times, we just simply through the IDE to execute the Java program, the underlying IDE is how to execute Java program? Many people do not understand.
This knowledge point is the most basic Java developers need to master, beginner Java, the first is certainly to teach you how to execute Java programs on the command line, but many people once the Java learning, the IDE used, and forget this. Why do you want to know this, know the most pure Java startup mode, you can start the problem at the time, to analyze the number of directories launched at that time, the implementation of naming, how the parameters, whether there are missing and so on. This will help you develop real-world solutions to those weird and potentially environment-related problems.
Here are some of the things you need to know:
Javac compiling Java files as class files;
The use of Java commands, how the Java class with the package starts on the command line;
The various paths that are involved in the Java program (CLASSPATH, Java,library,path, main directory of the Java runtime, etc.).

  1. Data type
    This is nothing more than the basic type of Java and the mastery of object types. You can learn more about how the JDK automatically transforms the knowledge, including packing and unpacking, and also to avoid the same type of judgment after boxing.
    Key points of knowledge:
    Base type: int, long, float, double, boolean;
    Corresponding object types: Integer type to basic type conversion, boxing and unpacking
    Object type: Equals, characteristic of the hashcode,string type.
  2. Access control
    This is also a fundamental feature of the Java package, which needs to be mastered by:
    Public protected default private to the class, method, field of the modified role.
  3. Process Control
    The basis of Java process control, although some grammars are not necessarily common, they need to be understood and used where appropriate.
    What you need to know is: If, switch, loop, for, while, and so on, process control syntax.
  4. The concept of object-oriented programming
    This is a core concept of Java and requires proficiency for any Java developer. Many features or knowledge points in Java are related to the concept of Java object-oriented programming. In my understanding, a good developer not only needs to understand these features (knowledge points) themselves, but also need to know how these objects are embodied in Java's object-oriented programming concept, which is more useful for developers to master the Java Development language, as well as other object-oriented programming language.
    The main points of knowledge include:
    Object-oriented three major features: encapsulation, inheritance, polymorphism; The concepts of the respective definitions, what features are embodied, their respective usage scenarios, static multiple allocations, the concept of dynamic single dispatch, the concept of overloading and the use
    Inheritance: interface multi-Implementation, base-class single-inheritance abstraction, abstract class, interface
    Polymorphism: The concept of method overrides and the use of interface callbacks
  5. Object and instance, object creation
    In this context, developers need to understand the concepts of class and instance and the difference between them, which is a fundamental aspect of Java's object-oriented nature. The main points of knowledge are:
    The concept of class and Instance;
    Instance the process created:
    1. No inheritance: Allocate memory space, initialize variables, call constructors;
    2. There is inheritance: handling static actions, allocating memory space, variables defined as initial values, from base class to subclass, processing the initialization of the definition, executing the construction method;
    Points to note: Static properties such as initialization from the base class, subclass, and default parameterless construction method-related attributes.
  6. Static
    Static properties are often used in Java daily development and need to understand the usage associated with the static keyword, as well as with other keywords, such as whether it can be combined with abstract, final and other keywords.
    The main needs to be mastered are:
    Definition of static properties, usage, and how classes are initialized when they are loaded
    Definition and use of static methods
    Definition and use of static classes
    The definition and initialization time of static code blocks
  7. Basic points of knowledge
    Here are some of the scattered, no system classification of some Java knowledge points. In the daily development of the use of a lot. This piece of content actually has many, at present only temporarily summed up these several here:
    Includes: Equals, Hashcode, String/stringbuffer, final, finally, finalize
    9. Collection Framework
    This is a need to master the part of the Java development, it can be said that there is no need to set the framework, this is very important. But the knowledge here is not difficult, but for the collection it is best to understand the internal implementation, because it helps you to choose the appropriate framework in different scenarios to solve the problem, such as a set of 1W elements, often to contains judgment operation, know the characteristics of the collection or internal implementation, It is easy to make the right choice.
    This includes the following (concurrency related is not included):
    The system of the SET framework: base collection, Map
    The concrete collection implements the content, List, set, Map concrete implementation, the internal structure, the special method, applies the scene and so on the collection related tool class collections usage.
    10. Exception Frame
    Exceptions may not be so important in the development of Java. Generally encountered anomalies, directly on the throw, or simply catch a deal after processing for the overall operation of the program has no significant impact. However, in enterprise-level design and development, the design and processing of the exception is often related to the overall robustness of the system. A good system of exceptions for developers, the processing should be unified, to avoid scattered around a lot of exception processing logic, for the system, the exception should be controllable, and is easy to operation, some anomalies, there should be a way to deal with, know how to operations, so although the exception frame is very simple, However, for the whole enterprise application development, exception handling is very important, to deal with the exception will need to understand the Java exception system.
    This part needs to grasp the knowledge point is not many, mainly is:
    Abnormal system:
    Throwable
    Exception
    RuntimeException
    Error
    The difference between runtimeexception and general Exception, the concrete treatment method and so on.

11.Java IO
IO in Java is not only the file read and write so simple, but also includes the socket network read and write, and so on all the input and output operations. For example, the standard HTTP request post content reading is also an output process, and so on ...
For Io,java not only provides basic input, output-related APIs, but also provides some simplified operation of reader, writer and other APIs, in some development (involving a large number of IO operation of the project) is also important, general daily development also involves (log, Read and write temporary files, etc.).
The main points of knowledge in this are:
Basic IO System: Includes InputStream, OutputStream, reader/writer, file read, various stream reading concepts, specific usage patterns and usage scenarios
12. Multithreading Concurrency
Multithreading is generally considered a difficult piece in Java. Multithreading can effectively improve CPU utilization, improve overall system efficiency, especially in the case of a large number of IO operations blocked, but it is also a double-edged sword, if not used well, the system is not only a small increase, or no elevation, but also bring multi-threaded debugging and other issues.
There are a lot of content in multi-threading, just a brief explanation of the knowledge points that need to be mastered in Java in the initial use of multithreading, and later have the opportunity to describe in detail the usage scenarios of some advanced features separately.
Multithreading implementation and start-up
The difference between callable and runable
Syncrhoized, Reentrantlock of the respective characteristics and comparison
Thread pool
Future asynchronous way to get execution results
Concurrent Bag
Lock
..
13. Network
Java also provides APIs that can operate directly with the TCP protocol and UDP protocol. With the emphasis on network performance, you can use the socket to communicate directly through TCP/UDP. You can see the usage of these related APIs in the source code that looks at Tomcat and so on. However, it is generally less likely to use TCP directly, using frameworks such as Mina and Netty for processing, since there is not much development involved in this area, so it is no longer exhaustive.
14. Time and date processing
For almost every application, the processing of the time and date is not the same, but the time-dependent API usage before JDK8 is not friendly. In that era, you can choose a time frame such as Joda. After the release of the JDK8, the new time API basically incorporates the benefits of other frameworks, which are already well-used.
For Java developers, it is necessary to use the API skillfully to handle time and date.
Specific knowledge points no longer listed, will be in the future to write a special article to summarize the use of time and date API in JDK8.
15.XML Parsing/JSON parsing
In fact, these two pieces of content is not j2se inside content, but in the daily development, and other program interaction, and configuration file interaction, more and more inseparable from the two forms of parsing.
But for a developer, the ability to understand some of the principles and methods of Xml/json specific parsing can help you better choose the right way to make your program more efficient and robust in every specific scenario.
XML: Need to understand the fundamentals of Dom parsing and sax parsing and their respective scenarios
JSON: There are some common JSON frameworks you need to know about, such as Jackson, Fastjson, Gson, and so on.
16. Reflective Technology
An artifact that dynamically creates instances, dynamically invokes methods, and is beloved by the major frameworks.
Use of 17.Maven or Gradle
MAVEN is not content in Java, but Maven is revolutionary and has brought great convenience to Java development. From the introduction and management of dependencies, the updating and release of development processes, to the release of updates, the use of Maven can greatly simplify the complexity of the development process, thus saving a lot of time. It can be said that Maven has become the standard for Java developers. So I put Maven also as a Java developer for the basic prerequisite knowledge points. I'll put some more of my experience and skills on Maven in the future, and I'm not going to dwell on it. As for the Gradle is a rising star.
18. Generics
This is a new concept introduced by JDK5, is actually a syntax sugar, in writing Java code, there will be a little convenience, general application or business development, only need to use simple, not necessarily the definition of generics such operations, but the development of some basic public components will be used, you can look at this part when needed , generally, as long as it is simple to use.
19. Labeling
was also introduced after the JDK5. Spring is an excellent framework, starting with XML as the standard configuration file. However, after the Spring3, especially after the rise of spring-boot, more and more respected the use of annotations to simplify the XML configuration file, for developers, can save a lot of XML configuration time. But the disadvantage is that the labels scattered in each class, unlike XML, can have a global understanding and management of all configurations, so there is no way to say that completely replace all the XML. For general developers, annotations can be used, and some public-build developers may need to understand the definition and implementation of annotations, and can look at them when they need them.

    1. JVM-related (includes features for each version)
      For those who have just come into contact with Java, the knowledge of the JVM does not necessarily need to be understood very deeply, there is some simple understanding of the concept. But for a veteran developer with more than 3 years of Java experience, the JVM is almost unacceptable.
      The JVM, as the basis for running Java, is hard to believe that people who don't know anything about the JVM can eat the Java language very well. When I interviewed developers with more than 3 years of Java experience, the JVM was almost a must-ask question. Of course, the JVM is not the only one to determine the technical ability of the interview problem, but can support Java development capabilities.
      Among the large classes of JVMs, I think the knowledge to be mastered is:
      JVM memory model and structure
      GC Principle, performance tuning
      Tuning: Thread Dump, analyzing memory structure
      Class binary bytecode structure, class loader system, class loading process, instance creation process
      Method Execution procedure: New features provided by the Java major version update (need to understand briefly)

Summarize:
People in this life can not do too many things, so every one to do a wonderful.
Your time is limited, so don't live for others. Don't be constrained by dogma, don't live in the minds of others. Don't let other people's opinions about your inner voice.
The most important thing is to be brave enough to follow your own heart and intuition, only your own mind and intuition know your own true thoughts, everything else is secondary.

Want to Big cow, Java development of the necessary technical points you understand it?

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.