Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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", "Mango", "Guava" ];
Set<String> flowers = { "Rose", "Daisy", "Chrysanthemum" };
Map<Integer, String> hindiNums = { 1 : "Ek", 2 : "Do", 3 : "Teen" }; 

My questions are:

1] Wouldn't it have been possible to provide a static method of in all of the collection classes which could be used as follows:

List<String> fruits = ArrayList.of("Apple", "Mango", "Guava");

IMO this looks as good as the literal version and is also reasonably concise. Why then did they have to invent a new syntax (EDIT: By 'new' I mean 'new to Java'.)?

2] When I say List<String> fruits = [ "Apple", "Mango", "Guava" ]; what List would I actually get? Would it be ArrayList or LinkedList or something else?

Thanks.

share|improve this question
1  
With regards to your first question: how would you create maps in a similar way while keeping them type-safe? – Michael Williamson Apr 23 '10 at 17:56
2  
@Paul: No, you can call generic methods without specifying the type. Java will infer it from the types of the arguments. – sepp2k Apr 23 '10 at 17:57
1  
@Michael: Had they added tuples to Java (which would have been a much saner addition IMO), we could use this sort of syntax for Map initialization: Map<String, String> capitals = HashMap.of(["India", "Delhi"], ["USA", "Washington DC"]); – Green Hyena Apr 23 '10 at 18:09
3  
@DJClayworth: For such unusual cases, you can use the type annotations like ArrayList.of<Object>("Apple", "Mango", "Guava");. Otherwise the type annotation is just not necessary. – Green Hyena Apr 23 '10 at 18:16
3  
Actually, I don't think this feature made it into Java 7. "The previously selected features of collections support and unsigned literals have been deferred and will be reconsidered in JDK 8" openjdk.java.net/projects/coin – wolfcastle Mar 31 '11 at 15:38
show 5 more comments

11 Answers

up vote 8 down vote accepted

Answer to question 2:

final List<Integer> piDigits = [3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5, 9];

gives you an immutable list.

The whole idea of this proposal that the subtype cannot be specified. The compiler chooses a suitable implementation depending on the collection on the right-hand side.

Read the details here: Proposal: Collection Literals

Answer to question 1: yes it would have. It's a matter of style.

share|improve this answer
Q3: Does it always have to be final? – Green Hyena Apr 23 '10 at 18:49
Re: The compiler chooses a suitable implementation depending on the collection on the right-hand side. --- When did compilers become so smart? (Some citations would be nice.) – Green Hyena Apr 23 '10 at 18:51
@Green Hyena: that is why I included the link, but I see that I linked to the wrong URL. This is now corrected. Thanks for hinting. – Eric Eijkelenboom Apr 23 '10 at 19:21
@Green Hyena: no, it does not have to be final. Immutable does not have anything to do with final, so that part could have been left out. Again, see the proposal. – Eric Eijkelenboom Apr 23 '10 at 19:25
Okay, thanks for the answer. – Green Hyena Apr 24 '10 at 1:20

Another thing to note is that for lists this is very easy using var args, but have a little think about how you'd do it for a map. There is no way to supply pairs of arguments to a var args method, unless you introduce an extra Map.Entry object or something like that.

So using existing syntax you'd end up with

Map<String,String> map = HashMap.of( new Entry( "key1", "value1" ), 
                                     new Entry( "key2", "value2" ) );

which would get very tiring very quickly.

Even if you go down the path of using a builder pattern (as we do) then it's pretty ugly

Map<String,String> map = CollectionUtil.<String,String>map()
                                        .put( "key1", "value1" )
                                        .put( "key2", "value2" )
                                        .map();
share|improve this answer
1  
Had they added tuples to Java (which would have been a much saner addition IMO), we could use this sort of syntax for Map initialization: Map<String, String> capitals = HashMap.of(["India", "Delhi"], ["USA", "Washington DC"]); – Green Hyena Apr 23 '10 at 18:17

A1 Yes it is possible, but requires you to type more and more.

While this is not certainly something essentially wrong, it is one of the things developer complain more about. They ( and sometimes I do my self ) feel that Java is too verbose.

As the hardware got faster, new programming languages which at the beginning were too expensive to perform computations became feasible, and they are now being used more and more and are very popular. When developers have to type in Java again they feel, like oh no:, public static void main again! kind of.

One of the things that Java ( and statically types languages in general ) had to increase execution speed is to perform as many validations as possible before running ( that is, in the compiling stage )

These new programming languages ( remarkably Python and Ruby ) make a joy to program in, because you have to type less to achieve the same.

The reaction Java is taking to this, is to make the language bigger and incorporate some of this "syntactic sugar" into the language, that's why.

Even programming languages like C# had these extended features ( properties comes to my mind ) to make the developer code less.

At the end, I think these additions benefit the language, but they have to be added very carefully, to avoid break the compatibility and/or create a language that is so big, that nobody can use it.

I think an alternative would've been to allow the methods to be more expressive in their names, but that's very complicated, for Java. Perhaps in a new language :).

The Map put method signature could have been like this:

 /**
  * Analog to put( Object k, Object v );
  */
 public [( Object = k )]=( Object  v ) {
 } 

That's allow the method name be: [(key)]=(value) and eventually omit the parenthesis ( like in Ruby or originally in Smalltalk ) so this method would be:

 Map map = ....
 map.["name"]="Oscar";

Since that's not possible ( because []= are not valid method identifiers ) and writing:

 map.put("name","Oscar");

Is ... mmhh too verbose, they decided to add this solution.

Another enhancement are number literals, so you will be able to type:

 int million = 1_000_000;

A2 : You will get something else.

A3 ( expanding my comment on kloffy answer ).

You could write that same code in Java as of today.

Granted Stage, Scente, Group, Text, ImageView, Image were existing Java classes, you could type:

 new Stage() {{
     title  =  "Group-Nodes-Transformation";
     scene  =  new Scene() {{
         width =  600;
         height = 600;
         content = new Group() {{
             content = new Object[] =  {
                 new Circle() {{
                     centerX = 300;
                     centerY = 300;
                     radius = 250;
                     fill = Color.WHITE;
                     stroke = Color.BLACK;
                 }},
                 new Text() {{
                     x = 300;
                     y = 300;
                     content = "Mr. Duke";
                 }},
                 new ImageView() {{
                     image = new  Image() {{
                         url = "D:\\TEST\\Documents\\duke.png"
                         width = 50;
                         height = 50;
                     }};
                 }};
             };
         }};
     }};
 }};
share|improve this answer
This (map.["name"]="Oscar";) just gave me a flashback to c++'s operator overloading. – David Apr 23 '10 at 23:00

Not mentioned above is the simplicity of collections of collections. Lets say you want a constant to store the currency names and values of different countries.

// Currency devisions by country, and their various names
Map<String,Map<Float,List<String>>> CURRENCIES =
    { "US" : { 1 : ["dollar","buck"],
               0.25 : ["quarter"],
               0.10 : ["dime"],
               0.05 : ["nickel"],
               0.01 : ["penny"] },
      "UK" : { 1 : ["pound"],
               1.05 ["guinea"],
               0.125 : ["half crown"],
               0.05 : ["shilling","bob"],
               0.025 : ["sixpence"] } 
    };

I have pack an enormous amount of data in twelve extremely legible lines. Had I used ArrayList.of (ten times) and some similar map constructor (four times, with ten Map.EntryPair!), the function calls would have bloated the code and made it significantly harder to read.

While it is definitely in the domain of syntactic sugar, this is the #1 feature I'm looking forward to in Java 7 (if it every gets out).

share|improve this answer

They might have been inspired by the declarative programming style of JavaFX. If that is the case however, I'm disappointed that they didn't go all the way to support object literals as well. Here's an example of object literals in JavaFX:

Stage {
    title: "Group-Nodes-Transformation"
    scene: Scene {
        width: 600
        height: 600
        content: Group {
            content: [
                Circle {
                    centerX: 300
                    centerY: 300
                    radius: 250
                    fill: Color.WHITE
                    stroke: Color.BLACK
                },
                Text {
                    x: 300
                    y: 300
                    content: "Mr. Duke"
                },
                ImageView {
                    image: Image {
                        url: "D:\\TEST\\Documents\\duke.png"
                        width:50
                        height:50
                    }
                }
            ]
        }
    }
}

I think that this style of programming certainly lends itself to certain application areas. In the end it's always a matter of taste...

share|improve this answer
1  
I like this example. So much cleaner and more readable than the Swing code in Java. – Green Hyena Apr 23 '10 at 18:14
2  
That's possible in Java also. I don't know much about JavaFX, but if each of those elements were classes, you could type it like this: pastebin.com/jAqwXt7X – OscarRyz Apr 23 '10 at 18:25
@Oscar: Anonymous classes with instance initializer blocks. Neat trick! +1 :) – Green Hyena Apr 23 '10 at 18:27
@Oscar: That is a nice tick indeed, thanks for sharing! – kloffy Apr 23 '10 at 19:07

Language design is a matter of taste. Having said that, this kind of list/object initialization has become very popular. For example, C# has almost the same thing. The syntax is quite flexible and, as even your examples show, lets you initialize something like a dictionary inline. I rather like the syntax the designers chose here.

share|improve this answer
2  
What is that you find so "flexible" in this syntax? – Green Hyena Apr 23 '10 at 18:04

IMO this is just a Syntactic sugar that simplifies code a bit. Why are you not surprised by a sugar of the same kind:

int []arr1 = new int[] {1,2,3};
int []arr2 = {1,2,3};

It is just a convenient way to express a simple idea instead of writing something like

int []arr = new int[3];
arr[0] = 1;
arr[1] = 2;
arr[2] = 3;

Does this add something really new to our life? Well, no. Does it makes our lives a bit easier? I think, yes.

Regarding second part of question, I don't know what actual types would be. But frankly speaking, how often do you care what collection implementation is? Especially taking into account that such collections are expected to be relatively small (with all values typed by a developer). Anyway, in those rare cases when you do care, just don't use this simplified syntax and do the job yourself.

share|improve this answer
Umm... My question is why not of instead of these funny (IMO) syntaxes? – Green Hyena Apr 23 '10 at 18:22
These kind of syntax help a lot when you have to create fixtures for your tests for instance. – OscarRyz Apr 23 '10 at 18:53
Why not use "of"? The same reason: just save a bit of typing. There is main idea to express (creation of collection), and this seems to be the shortest way. The actual implementation of collection doesn't matter at all here. Collection and its data is the main thing. This save of a few characters is especially important if you want pass "inline" collection as argument to some method. – SergGr Apr 24 '10 at 7:56

It's not entirely new syntax as such literals are present in Python, Javascript (json) and probably other languages.

I haven't seen any information on java 7 yet to be frank (were focused on C++ and Javascript lately), but it's actually good to see such an addition to the language.

share|improve this answer

Just to clarify one point - they did not "invent new syntax".

I'm not 100% sure where the original idea came from, but using "[]" to denote lists and "{}" to denote maps exists in Perl (where those are used in building array refs and hash refs).

There's no "set" in perl strictly speaking but the most idiomatic implementation of a set is a map (map set member to 1), so "{}" also fits.

So Perl would say exactly the same things as you listed as:

$fruits = [ "Apple", "Mango", "Guava" ]; # Creates array reference
$flowers = { "Rose" => 1, "Daisy" => 1, "Chrysanthemum" => 1 };
     # or { map {$_=>1} ("Rose", "Daisy", "Chrysanthemum"))
$hindiNums = { 1 => "Ek", 2 => "Do", 3 => "Teen" }; 

I'm not saying the above came from Perl, of course, but it is consistent with at least one other language and thus possibly with a wider use.

share|improve this answer

You are right this is just empty syntactic sugar.

Also your ArrayList.of(...) would be just short hand for new ArrayList<...>(Arrays.asList(...))

share|improve this answer

I think one of the reasons, is that of( ... ) will generate an unchecked warning if you would try to populate it with instances of generic objects.

The reason, ... expands to a java array, and java arrays do not like generic instances.

Here is an example from the spec that deals with this specific issue:

List<List<Integer>> pascalsTriangle =
    [[1],
     [1, 1],
     [1, 2, 1],
     [1, 3, 3, 1],
     [1, 4, 6, 4, 1]]

There is currently no way to initialize this variable in this concise manner and without unchecked warning.

share|improve this answer
ideone.com/vKab8 - This code doesn't give any warning. – Green Hyena Apr 23 '10 at 18:45
@Green Hyena: Instead of initializing it to ArrayList< String >, try to initialize it to ArrayList<ArrayList< String >>, then observe the warnings. If this sounds too far fetched, try to initialize List< Class<?> > without warnings. – Alexander Pogrebnyak Apr 23 '10 at 21:41
@Green Hyena: This is to demonstrate my point: ideone.com/WmgwT. BTW, +1 for showing this great tool. – Alexander Pogrebnyak Apr 23 '10 at 21:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.