Home > Java > javaTutorial > body text

10 recommended articles about jdk1.5

黄舟
Release: 2017-06-11 10:33:25
Original
1113 people have browsed it

Today I suddenly need to use a Character. When using HashMap, I define: HashMap map=new HashMap(); so that it can be used, but when defining For: HashMap map=new HashMap(); In this case, there will be problems, so I checked the difference. When I was learning Java, I learned the English version. I didn't learn it well, so now I can only make up for it slowly. Character is a wrapper class for char, just like Integer and int, and Long and long. Character is a wrapper class of char. Note that it is a class and provides many methods. Packaging classes and basic types can be automatically converted. This is a new feature of jdk1.5 (5.0), which is called automatic sealing and automatic unsealing: Example 1: ch

1. Detailed explanation The difference between Character and char methods

10 recommended articles about jdk1.5

## Introduction: Character is a wrapper class for char, just like Integer And int Long and long packaging classes and basic types can be automatically converted. This is a new feature of jdk1.5 (5.0), called automatic sealing and automatic unsealing, that is, int t=10; Integer t1=t; // automatic sealing Integer t=new Integer(10);int t1=t//Automatically unblock

2. java special topic on jdk1.5 thread enhancement

10 recommended articles about jdk1.5

Introduction: 1. The concept of thread pool and the application of the Executors class. After jdk1.5, we can use the Executors class Static method to create a thread pool object //This method is used to create a thread pool object and determine how many thread objects there are in the thread pool through the specified parameters. The object implements the ExecutorService interface 1. public static

3. Details the code sharing used by the Atomic package in Java

10 recommended articles about jdk1.5

Introduction: Introduction Java has provided the java.util.concurrent.atomic package since JDK1.5 to facilitate programmers to perform lock-free atomic operations in a multi-threaded environment. The bottom layer of atomic variables uses the atomic instructions provided by the processor, but different CPU architectures may provide different atomic instructions, and may also require some form of internal lock, so this method cannot absolutely guarantee that the thread will not be blocked. Introduction to the Atomic package There are a total of 12 classes in the Atomic package and four atomic update methods, namely atomic update basic type, atomic update array, atomic update reference and atomic update field. At..

4. java annotation mechanism and its principles

10 recommended articles about jdk1.5

Introduction: Annotations are also called metadata, such as our common @Override and @Deprecated. Annotations are a feature introduced in the JDK1.5 version. They are used to explain the code and can be used to describe packages, classes, and interfaces. , fields, method parameters, local variables, etc. are annotated. Its main functions are as follows:

5. The most complete summary of Java generic programming

10 recommended articles about jdk1.5

Introduction: Java generic programming was introduced after JDK1.5 version. Generics allow programmers to use type abstractions, often within collections. The following is an example without generics:

6. Deploying PHP applications under GAE

Introduction: Deployment on GAE PHP application ? Now GAE has come to java, but unfortunately there is still no news about PHP. But we can use java-based Quercus before google officially supports PHP. Quercus can basically support 100% of the PHP language (requires JDK1.5). Now we start running PHP with GAE: 1) Register for a free GAE account. ?2)? Download this file to your computer (if

7. Windows PHP integrated development and debugging environment preparation

Introduction: Building a Windows PHP integrated development and debugging environment ​ PHP integrated development and debugging environment construction: The software components of the environment are: Apache2.4, PHP5.3 NTS, ZendDebugger, mod_fcgid-2.3.7-win32, Eclipse PHP. JDK1.5, mysql55 ? Mysql55 has been installed since the author used the installation version before. Just talk about how to configure PHP M

8. Windows PHP integrated development and debugging environment preparation

Introduction: Windows PHP Integrated development and debugging environment construction PHP integrated development and debugging environment construction: The software components of the environment are: Apache2.4, PHP5.3 NTS, ZendDebugger, mod_fcgid-2.3.7-win32, Eclipse PHP. JDK1.5, mysql55? mysql55 has been installed because the author used the installation version before. Just talk about how to configure Mysql in PHP.

9. Deploying PHP applications under GAE

Introduction: Deploying PHP applications on GAE ? Now GAE has reached this Java , but unfortunately there is still no news about PHP. But we can use java-based Quercus before google officially supports PHP. Quercus can basically support 100% of the PHP language (requires JDK1.5). Now we start running PHP with GAE: 1) Register a free GAE account. ?2)? Download this file to your computer (if the connection fails

10. Oracle Swingbench stress testing software installation configuration

Introduction: This is developed by an Oracle UK employee on the basis of an abandoned project. The current stable version is 2.2, the latest version is 2.3, based on JDK1.5. The tool is free and available at

##.

#[Related Q&A Recommendations]:

java - Why does it no longer need to configure the classpath environment variable in jdk1.5?

java - Developing android, does it contain jdk

java - What is the default value of JVM startup parameter-Xmx?

java - Happen before rule Which JDK version was added? Why does double check locking be supported after jdk1.5?

java QR code generation and parsing tool Note: only supports jdk1.6 and above, does anyone have any? Tools that can support jdk1.4 or jdk1.5, thank you .

The above is the detailed content of 10 recommended articles about jdk1.5. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!