Java 8 refers to a future version of the Java platform, expected to be released in September 2013.
0
votes
1answer
101 views
Java 8 closures/lambda + Java EE 7 = LINQ or Grails-like magic in JPA?
One of the coolest things about Grails is that you can do something like
MyDomainObject.findAll { foo == x && (bar == null || bar == y) }
and the closure gets translated to a SQL WHERE ...
0
votes
1answer
57 views
Can Java 8 code be compiled to run on Java 7 jvm?
Java 8 introduces important new language features such as lambda expressions.
Are these changes in the language accompanied by such significant changes in the compiled bytecode that would prevent it ...
0
votes
1answer
90 views
JSR 310: Converting between time zones
Trying to use JSR 310 to convert milliseconds datetime values between timezones. Dealing with milliseconds values is required, to work with legacy APIs. In my case, it's between local and UTC/GMT, but ...
0
votes
1answer
103 views
Java 8 M7 - when and where? [closed]
Does anyone know when and where Java 8's M7 (the developer preview) will land?
I'm looking here:
http://openjdk.java.net/projects/jdk8/milestones
http://jdk8.java.net/download.html
And I've read:
...
4
votes
1answer
107 views
Java 8 support in GWT
This seems like a very basic question, but I searched high and low and have found almost no mention of it anywhere. So, I'll ask it here here.
What is the current plan for supporting Java 8's new ...
4
votes
2answers
128 views
Method references for non-empty arguments?
I was reading about the Java 8 features and I saw that they have method references, but I did not see how to specify which method when the method is overloaded. Does anyone know?
1
vote
1answer
73 views
Problems running Java 8 TestNG inside IntelliJ
I am writing a Maven application using OpenJDK 1.8 and running tests using TestNG.
When I run Maven from the command line everything works fine, but when I try to run the test inside IntelliJ, then ...
1
vote
1answer
92 views
How to fix NullPointerException in javafx-8
JavaFX produces NullPointerexception while it's setting text to text field.
This code produces this exception:
public void invalidate() {
model.getLock().lock();
try {
...
4
votes
4answers
1k views
Java 8 lambda expression and first-class values
Are Java 8 closures really first-class values or they area only a syntactic sugar?
11
votes
3answers
415 views
What does the arrow operator, '->', do in Java?
While hunting through some code I came across the arrow operator, what exactly does it do? I thought Java did not have an arrow operator.
return (Collection<Car>) ...
1
vote
1answer
97 views
Is it possible to use Java 8 to avoid java.lang.OutOfMemoryError: PermGen in GWT Devmode
I came across a recent article on Java 8 related to memory management w.r.t to PermGen space.
Is there any way we can use Java 8 Metaspace with GWT Dev mode to improve GWT Dev mode utility and ...
4
votes
0answers
195 views
Language-Integrated Query (LINQ) for Java [closed]
I found several questions on SO regarding LINQ for Java e.g.
LINQ for Java tool
Is there something like LINQ for Java?
However, those questions were asked around year 2008 - 2010. At that time ...
6
votes
2answers
481 views
Eclipse + Java 8 support?
How can I get Java 8 to work with Eclipse?
I have followed this guide but doesn't work:
http://tuhrig.de/?p=921
Also seen
http://wiki.eclipse.org/JDT_Core/Java8
but they don't explain what to do ...
3
votes
2answers
271 views
Retrieving a List from a java.util.stream.Stream in Java8
I was playing around with Java 8 lambdas to easily filter collections. But I did not find a concise way to retrieve the result as a new list within the same statement. Here is my most concise approach ...
0
votes
3answers
157 views
How to write an immediate function invocation in Java? JavaScript example provided
How to convert the below JavaScript example to corresponding code in Java 8 with lambda. I am trying to get the Java 8 lambda.
Made up example.
// js
var isFlag = true,
name = (function () {
...
6
votes
2answers
290 views
Precise definition of “functional interface” in Java-8
Recently I started exploring Java 8 and I can't quite understand the concept of "functional interface" that is essential to Java's implementation of lambda expressions. There is a pretty comprehensive ...
2
votes
3answers
187 views
Java “static import” vs. “import static” in Java 8
I was trying to use use static imports on Java, but I was writting it wrong
static import java.lang.System.out;
And the code compiled (although the "out" symbol couldn't be found), no syntax ...
8
votes
3answers
335 views
Java 8 compiler error - how to get more information?
I played around with Java 8 ea b72, but I get a compiler error. Is there a way to get more information from javac, e.g. the file list it is currently working on? If I had a general idea where to look ...
4
votes
1answer
115 views
How to specify function types for void (not Void) methods in Java8?
I'm playing around with Java 8 to find out how functions as first class citizens. I have the following snippet:
package test;
import java.util.*;
import java.util.function.*;
public class Test {
...
17
votes
5answers
684 views
Cake pattern with Java8 possible?
I just wonder: with Java 8, and the possibility to add implementation in interfaces (a bit like Scala traits), will it be possible to implement the cake pattern, like we can do in Scala?
If it is, ...
6
votes
2answers
210 views
Removal of JDBC ODBC bridge in java 8
Starting with Java 8, the JDBC-ODBC Bridge will no longer be included with the JDK.
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); // classNotFoundException is thrown
Is there any other solution ...
1
vote
2answers
575 views
How JetBrain IntelliJ IDEA select Java to bootup
I have install Java 8 EA on my Window 7, but it's neither in my %JAVA_HOME% nor in the %PATH%. However when I start my IntelliJ IDEA v12 by clicking idea64.exe, it picked up java 8 EA instead of my ...
2
votes
2answers
486 views
Java 8: Mandatory checked exceptions handling in lambda expressions for standard Java 8 functional interfaces
I'm playing with the new lambda features in Java 8, and found that the practices offered by Java 8 are really useful. However, I'm wondering is there a good way to make a work-around for the following ...
3
votes
2answers
97 views
On signature polymorphic methods in Java-7
As far as I can tell, with the introduction of MethodHandle in Java 7 came the introduction of compiler-generated method overloads.
The javadoc for MethodHandle states (I've trimmed the examples):
...
11
votes
1answer
397 views
Lambdas and generics in Java 8
I'm playing with future java 8 release aka JDK 1.8.
And I found out that you can easily do
interface Foo { int method(); }
and use it like
Foo foo = () -> 3;
System.out.println("foo.method(); ...
31
votes
4answers
5k views
Java 8 and Scala
This Java 8 vs Scala: a Feature Comparison article on InfoQ, very well summarizes the similarities between the upcoming Java 8 and Scala.
Given the improvements to Java 8, what are the features in ...
6
votes
1answer
510 views
Are Project Coin's collection enhancements going to be in JDK8? [closed]
Initially Project Coin had enhanced support for collections e.g. list[3] instead of list.get(3) and map["hello"] = 27 instead of map.put("hello", 27) but they were not in jdk7. Are they going to be in ...
4
votes
2answers
204 views
How do I define a method which takes a lambda as a parameter in Java 8?
In Java 8 methods can be created as Lambda expressions and can be passed by reference (with a little work under the hood). There are plenty of examples online with lambdas being created and used with ...
7
votes
2answers
301 views
Will java allow to use functional interfaces as methods?
With the new java lambdas and the concept of functional interfaces, will it be possible to treat those functional interfaces as methods?
interface Func { void execute(int i); }
void call(Func f)
{
...
1
vote
2answers
203 views
Glassfish server does not work with JDK 8
I'm using jdk 8 with lambda in a web project with NetBeans, but when a deploy it to glassfish it shows me this error:
java.lang.RuntimeException: Uncompilable source code - Erroneous tree type: ...
3
votes
3answers
220 views
Following changes in JDK8 repository
I'd like to follow the development of JDK8, but what I see in the repo is strange at best:
6 days ago katleman Added tag jdk8-b60 for changeset e07f499b9dcc default tip changeset | manifest
7 ...
0
votes
0answers
300 views
How will JDK8's lambdas be integrated into Scala? [closed]
Will lambdas in the upcoming Java 8 benefit Scala which already has them? For example, will its collections adopt the lazy until sink chaining (with choice of final container) of Java's implementation ...
11
votes
4answers
622 views
Parallelism in Java 8
I tried to use new parallel feature JDK8, but unfortunately, I couldn't get it to work.
NetBeans 7.1 says that method "parallel" does not exist.
Does this method require special import?
Does anyone ...
5
votes
1answer
335 views
Java 8 (pre-release) interface member variables
Are public members variables in Java 8 interfaces a feature or an implementation side-effect/defect?
This question pertains to the pre-release Java 8 build lambda-8-b50-linux-x64-26_jul_2012.tar.gz.
...
6
votes
3answers
1k views
Java Lambdas and Closures
I hear lambdas are coming soon to a Java near you (J8). I found an example of what they will look like on some blog:
SoccerService soccerService = (teamA, teamB) -> {
SoccerResult result = ...
11
votes
2answers
2k views
Lambda expressions don't work in Java 8?
I have a virtual machine running Windows XP SP3 32-bit. On this machine
I installed the Java SE JDK 8 build b44 Developer Preview from here.
I also installed the JavaFX 2.1 SDK.
It works fine:
java ...
7
votes
3answers
745 views
When are braces optional in Java 8 lambda syntax?
I realise that the Java 8 lambda implementation is subject to change, but in lambda build b39, I've found that braces can only be omitted when the lambda expression returns a non-void type. For ...
0
votes
2answers
35 views
Where is valid RSS changes of OpenJDK projects?
I wanted to be notified about last changes of JDK's project through RSS, for example lambda project. http://hg.openjdk.java.net/lambda/lambda/jdk/rss-log seems is not a valid RSS output, so where is ...
2
votes
3answers
4k views
Eclipse 4.2 and Java 8
I found this page stating that Java 8 support for Juno is deffered, but I can't find more information how soon people can exspect to be able to write first closures in Eclipse and get productive with ...
2
votes
2answers
1k views
Can't get lambda's to compile in Netbeans 7.1.1+JDK8 (jdk-8-ea-bin-b35) [duplicate]
Possible Duplicate:
Lambda expressions don't work in Java 8?
Simple, pointless app with a lambda:
public static void main(String[] args) {
FileFilter java = (File f) -> ...
6
votes
1answer
2k views
compiling and running java8/jdk8 code in netbeans - Uncompilable source code
After playing with preview of JDK 1.8 in notepad and compiling files from command line, I thought I would try with netbeans and see what happens.
I have successfully added JDK 1.8 and changed the ...
1
vote
2answers
777 views
Java 8 : How can it precede Java 7's general adoption
I'm finding more and more news about Java 8 - however, Java 7 is just now being adopted in a lot of places. For example, at my work, we are still on Java 6, even though some of us have Java 7.
Im ...
4
votes
2answers
185 views
Are there any reasons why specifying the argument type is required in Java 8 lambda syntax?
I have read http://cr.openjdk.java.net/~briangoetz/lambda/lambda-state-4.html and noticed that all the examples have argument type declared explicitly, even though it's already known from the ...
14
votes
2answers
3k views
How to have Eclipse use JDK8 to compile a project?
I'm experimenting with the new jdk8 what is available here http://jdk8.java.net/lambda/
I'm able to compile and run my project from command line.
I'm also able to add this new JDK to Installed JREs ...
20
votes
3answers
3k views
Are defaults in JDK 8 a form of multiple inheritance in Java?
A new feature coming in JDK 8 allows you to add to an existing interface while preserving binary compatibility.
The syntax is like
public interface SomeInterface() {
void existingInterface();
...
1
vote
0answers
529 views
Will Java 8 be able to have another release of Swing?
Taking into consideration Project Jigsaw for Java 8 (to modularize the JDK), will a "new" Swing Framework be able to be taken into consideration?
Consideration means:
someone actually rewriting it
...
27
votes
2answers
961 views
Closures in Scala vs Closures in Java
Some time ago Oracle decided that adding Closures to Java 8 would be an good idea. I wonder how design problems are solved there in comparison to Scala, which had closures since day one.
Citing the ...
14
votes
2answers
552 views
Java 8 Lambda syntax (closures)
Can any one please describe this sort of code to understand Java closure.
public static <T> void sort(List<T> l, final {T, T=>Number} block) {
Collections.sort(l, new ...
9
votes
2answers
260 views
How will closures in Java enable API design to replace language design?
I can see some of the benefits of closures, such as how they can have their place in simplifying existing libraries and making some future design easier and more efficient.
However, one of the key ...


