Possible Duplicate:
What differences will Java 7 have from Java 6, and what will it mean to us Java programmers?
What new features in java 7 is going to be implemented? And what are they doing now?
What new features in java 7 is going to be implemented? And what are they doing now? |
|||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Java SE 7 Features and Enhancements from JDK 7 Release Notes This is the Java 7 new features summary from the OpenJDK 7 features page
Code examples for new features in Java 1.7Automatic Resource Managementthis:
becomes:
You can declare more than one resource to close:
Underscores in numeric literals
Strings in switch
Binary literals
Improved Type Inference for Generic Instance Creation
become:
Better exception handlingthis:
become:
|
|||||||||||
|
|
In addition to what John Skeet said, here's an overview of the Java 7 project. It includes a list and description of the features. Note: JDK 7 was released on July 28, 2011, so you should now go to the official java SE site. |
|||||||
|
|
New Feature of Java Standard Edition (JSE 7) The JLayer class is a flexible and powerful decorator for Swing components. The JLayer class in Java SE 7 is similar in spirit to the JxLayer project project at java.net. The JLayer class was initially based on the JXLayer project, but its API evolved separately.
In the JDK 7 , we can use a String object in the expression of a switch statement. The Java compiler generates generally more efficient bytecode from switch statements that use String objects than from chained if-then-else statements.
We can replace the type arguments required to invoke the constructor of a generic class with an empty set of type parameters (<>) as long as the compiler can infer the type arguments from the context. This pair of angle brackets is informally called the diamond. Java SE 7 supports limited type inference for generic instance creation; you can only use type inference if the parameterized type of the constructor is obvious from the context. For example, the following example does not compile: List l = new ArrayList<>(); l.add("A");
In comparison, the following example compiles: // The following statements compile:
In Java SE 7 and later, a single catch block can handle more than one type of exception. This feature can reduce code duplication Consider the following code, which contains duplicate code in each of the catch blocks:
In releases prior to Java SE 7, it is difficult to create a common method to eliminate the duplicated code because the variable e has different types. The following example, which is valid in Java SE 7 and later, eliminates the duplicated code:
The catch clause specifies the types of exceptions that the block can handle, and each exception type is separated with a vertical bar (|).
The java.nio.file package and its related package, java.nio.file.attribute, provide comprehensive support for file I/O and for accessing the file system. A zip file system provider is also available in JDK 7. |
||||
|
|
|
The following list contains links to the the enhancements pages in the Java SE 7.
|
|||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.