Tagged Questions
Java SE version 7 is the latest release of the Java Standard Edition Platform.
127
votes
4answers
22k views
Who is preventing the release of Java 1.7? [closed]
I recently attended a talk by a Sun engineer, Charlie Hunt, regarding performance. The talk was interesting enough but one question was regarding the release date of 1.7.
He said it's delayed as ...
55
votes
3answers
3k views
How serious is the Java7 “Solr/Lucene” bug?
Apparently Java7 has some nasty bug regarding loop optimization: Google search.
From the reports and bug descriptions I find it hard to judge how significant this bug is (unless you use Solr or ...
36
votes
9answers
10k views
Java G1 garbage collection in production
Since Java 7 is going to use the new G1 garbage collection by default is Java going to be able to handle an order of magnitude larger heap without supposed "devastating" GC pause times? Has anybody ...
35
votes
7answers
15k views
What differences will Java 7 have from Java 6, and what will it mean to us Java programmers?
What differences will Java 7 have from Java 6, and what will it mean to us Java programmers?
I'm very curious about what the future of java holds, and I've been able to find some info on Java 7, but ...
34
votes
5answers
20k views
Programming Java 7 in Eclipse
I installed JDK 7 and Eclipse 3.6M6. Then, I added JRE 7 as a new JRE execution environment in Eclipse, and set the compiler compliance level to Java 7. I can compile the following piece of code ...
33
votes
7answers
5k views
What is the point of the diamond operator in Java 7?
The diamond operator in java 7 allows code like the following:
List<String> list = new LinkedList<>();
However in Java 5/6, I can simply write:
List<String> list = new ...
20
votes
2answers
238 views
ClassValue in Java 7
While browsing the Java 7 API documentation I stumbled upon the new class java.lang.ClassValue with the following rather minimal documentation:
Lazily associate a computed value with (potentially) ...
20
votes
5answers
900 views
Complexity of Java 7's current Lambda proposal? (August 2010)
Some people say that every programming language has its "complexity budget" which it can use to accomplish its purpose. But if the complexity budget is depleted, every minor change becomes ...
20
votes
9answers
8k views
Closures in Java 7
I have heard that closures could be introduced in the next Java standard that is scheduled to be released somewhere around next summer.
What would this syntax look like?
I read somewhere that ...
16
votes
6answers
2k views
Is there something like LINQ for Java?
Started to learn LINQ with C#.
Especially LINQ to Objects and LINQ to XML.
I really enjoy the power of LINQ.
I learned that there is something called JLINQ a Jscript implementation.
Also (as Catbert ...
15
votes
2answers
247 views
Is Java 7 at least as stable as Java 6? [closed]
I remember when Java 7 was initially released, there were many suggestions not to use it for anything as there were some bugs in compiler optimizations. This was apparently not merely hypothetical. ...
15
votes
3answers
1k views
When will the Java Language Specification, 4th edition be available?
Now that the JDK 7 developer preview is out, one might think that it's time for a new JLS. After all, there have been changes to the language, albeit small ones.
I haven't found anything yet. When ...
15
votes
11answers
990 views
Why collection literals?
Hi fellow Java programmers.
From the various online articles on Java 7 I have come to know that Java 7 will be having collection literals like the following:
List<String> fruits = [ "Apple", ...
15
votes
4answers
2k views
New features in java 7 [closed]
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 ...
14
votes
1answer
184 views
Why does a hidden static method compile under Sun JDK 6 but cause a compile failure under OpenJDK 6 and 7?
The following class:
public class StaticMethodsDemo {
public static class A {
public static A make() { return new A(); };
}
public static class B extends A {
public ...
14
votes
6answers
6k views
Binary Java 7 for Mac
Is there any binary release of Java 7 (using the Mac/BSD-port project) anywhere? Some blogs (e.g. Building Java 7 on Mac OS X) have a detailed instructions to build the jdk from source, but I was ...
13
votes
1answer
1k views
Java 7 / compilable James bond ASCII art [closed]
I remember that M. Joshua Bloch showed us in last Devoxx a Java 7-compliant (with the help of _ introduced via the project coin features) James Bond ASCII art.
Does anyone know where I can find it?
...
12
votes
1answer
128 views
Is support for compressed Strings being dropped?
On this oracle page Java HotSpot VM Options it lists -XX:+UseCompressedStrings as being available and on by default. However in Java 6 update 29 its off by default and in Java 7 update 2 it reports a ...
12
votes
1answer
197 views
Type-parameterized field of a generic class becomes invisible after upgrading to Java 7
Now Eclipse Indigo SR1 with builtin Java 7 support is finally out since a week or two, I'm migrating my playground projects from Helios SR2 + JDK 1.6_23 to Indigo SR1 + JDK 1.7.0. After a full rebuild ...
11
votes
4answers
155 views
Motivations and Demotivation for migrating applications to Java 7
Java 7 has been around for a while now. Now if an application is to be migrated to Java 7 without any changes (code/configuration), are there any inherent advantages or drawbacks? I was curious to ...
11
votes
1answer
390 views
Any current workarounds to use Sonar for Java 7 code?
I try to use Sonar on a Java 7 project (which relies on new syntactic features) and the PMD part and the Checkstyle part fail to parse those files.
The Findbugs part fails to read Java 7 class files.
...
11
votes
4answers
1k views
Testng, Emma, Cobertura, coverage and JDK 7 result in ClassFormatError and VerifyError
I have switched to the newest JDK 7 and I am having problems with running testng unit test on byte code that is fiddled by emma coverage tool. None of my test cases are run correctly and for most of ...
11
votes
4answers
663 views
Java 7: Path vs File
For new applications written in Java 7, is there any reason to use a java.io.File object any more or can we consider it deprecated?
I believe a java.nio.file.Path can do everything a java.io.File ...
11
votes
1answer
275 views
Is there a JDiff from Java 6 to Java 7?
There is one for Java 1.4 to Java 5. Did somebody set up a version for Java 6 to Java 7?
11
votes
2answers
306 views
How are the interfaces going to be replaced/augmented by the closures in Java?
Java 7 will have closures ( finally ), and I wonder how the existing code using single method classes/interfaces ( like Runnable, Comparator, etc ) will be used now.
Would that code be replaced? ...
11
votes
4answers
3k views
Java 7 Date/Time API
I notice that a snapshot of the Java 7 API has been up on java.sun.com for some time, but I only just had a look through it just now, looking specifically for the promised JodaTime-inspired Date/Time ...
10
votes
2answers
362 views
Does Android plan to support Java7?
As Android does not currently support java7, I find myself wondering if they have made an official comment if they are working on supporting it?
Cheers,
10
votes
3answers
384 views
JDK7: new features related to type variables?
I remember to have read about a new feature of JDK7 (now also supported by the Netbeans editor, yet only in current trunk builds).
This tiny feature wouldn't produce a warning anymore when instanceof ...
10
votes
2answers
285 views
Can anyone describe in a nutshell differences between 3 closures proposals and their current state in Java?
I'm reading about closures which are going to appear in Java 7.
And I'm a bit confused because from one hand there are lots of nice articles which describe new java closures. But from the other ...
10
votes
2answers
867 views
Is MiGLayout going to be included in Java 7?
All I could find so far is this (open) Sun bug/RFE entry with 426 506 votes:
http://bugs.sun.com/view_bug.do?bug_id=6530906
It's in third place in the list of RFEs.
Tons of people have stated that ...
10
votes
7answers
7k views
Best Java 7 features [closed]
Possible Duplicate:
What new features in java 7 do you find most useful?
What are some features that you like in the next version of Java?
9
votes
1answer
164 views
Why does a generic cast of a List<? extends Set..> to List<Set..> succeed on Sun JDK 6 but fail to compile on Oracle JDK 7?
The following code
class GenericCompilationFailureDemo {
List<? extends GenericCompilationFailureDemo> newList() {
return new ArrayList<GenericCompilationFailureDemo>();
...
9
votes
1answer
349 views
Why isn't getSelectedItem() on JComboBox generic?
JCombobox in Java 7 has been updated to use generics - I always thought it was a bit of an oversight that it didn't already so I was pleased to see this change.
However, when attempting to use ...
9
votes
2answers
297 views
Are there plans for ImmutableEnumSet in Java 7?
I want to have all the efficiencies of EnumSet and pass it around without worrying that somebody would modify it.
8
votes
3answers
587 views
Java 7 (JDK 7) garbage collection and documentation
Java 7 has been out for a while now, but I cannot find any good resources on the configuration of the garbage collectors, specifically the new G1 collector.
My questions:
Is G1 the default collector ...
7
votes
1answer
105 views
Type inference more restrictive in JDK 7 than JDK 6?
I think this might be related to Why does a generic cast of a List<? extends Set..> to List<Set..> succeed on Sun JDK 6 but fail to compile on Oracle JDK 7?
If we take the following ...
7
votes
2answers
107 views
In a Java 7 multicatch block what is the type of the caught exception?
In a Java 7 multicatch block such as the following:
try {
// code that throws exception
} catch (CharacterCodingException | UnknownServiceException ex) {
// handle exception
}
what is the ...
7
votes
5answers
154 views
What is the advantage of using multiple exceptions in one catch block?
We've all heard that in Java 7 we can write:
try {
//something with files and IO
} catch (FileNotFoundException | IOException ex) {
ex.printStackTrace();
System.out.println("It's can't ...
7
votes
2answers
239 views
Why can't the Java 7 and Eclipse 3.8 compiler compile JDK code with the new Java 7 diamond operator?
import java.util.*;
public class SimpleArrays
{
@SafeVarargs
public static <T> List<T> asList( T... a )
{
return new ArrayList<>( a );
}
}
asList() is taken from ...
7
votes
2answers
417 views
Java 7 - Precise rethrow with a final Exception
In previous versions of java, rethrowing an exception was treated as throwing the type of the catch parameter.
For example:
public static void test() throws Exception{
DateFormat df = new ...
7
votes
2answers
1k views
Findbugs gives “Null pointer dereference of System.out”, why?
I am using Java 1.7, Eclipse 3.7 with the FindBugs plugin from the marketplace. The example is as nice as heaven:
class Application
{
public static void main( String[] args )
{
...
7
votes
2answers
292 views
java 7 directory monitoring questions
I just saw an awesome feature with java 7, the directory watcher. It'll tell you when something changed in a directory without polling the directory.
1.) But it says it falls back to polling if the ...
7
votes
1answer
700 views
JDK7: Diamond inference syntax confusion
Try to compile the following code in JDK7:
import java.nio.file.*;
public final class _DiamondSyntaxErrors {
public interface InterfaceA<T> {
}
public abstract static class ...
7
votes
3answers
1k views
JSR305 vs. JSR308 (Java Type Anotations) - Which is going to be the standard?
There seem to be two different JSRs for annotations.
JSR-305: Annotations for Software Defect Detection (additional resource)
JSR-308: Annotations on Java Types (additional resource)
Both seem to ...
7
votes
3answers
2k views
What's the upcoming Java concurrency library: jsr166y? jsr166z?
I wanted to play around with the upcoming concurrency library which
is going to be included in
Java 7 according to this website.
It seems to be named JSR166.
In most places its reference ...
7
votes
10answers
3k views
What new features in java 7 do you find most useful?
From this thread New features in java 7 I found the new features in java from Alex Miller list
Which ones do you find most useful and why?
Which ones will be counterproducent?
NOTE this list is not ...
6
votes
2answers
105 views
Java 7 Diamond Operation in method call
This is kind of a follow up question on the discussion:
Why doesn't the diamond operator work within a addAll() call in Java 7?
From the Java Tutorial,
...
6
votes
2answers
126 views
Java 7 precise rethrow and legacy code
The more precise rethrow allows to write code that throws the exception really thrown :
public void foo(String bar) throws FirstException, SecondException {
try{
// Code that may throw ...
6
votes
2answers
638 views
Java 7 JVM VerifyError in Eclipse
When I compile my project in eclipse indigo using JDK 7, I get the following error dialog
with the following stacktrace
Exception in thread "main" java.lang.VerifyError: Expecting a stackmap frame ...
6
votes
1answer
219 views
Simplified Varargs Method Invocation in Java 7
In Java 7, you have the option to put a @SafeVarargs annotation to suppress the warning you get when compiling a method with a non-reifiable varargs parameter. Project Coin's proposal stipulates that ...