The diamond operator () was introduced in Java SE 7 to make declaring and initializing generic types more brief by automatic type inference during generic class instantiation.

learn more… | top users | synonyms

0
votes
2answers
66 views

What is diamond Operator in java? [duplicate]

I have an arraylist with type patient_class and the arraylist type has been underlined in yellow and the IDE has mentioned "redundant type arguments in new expression (use diamond operator instead)". ...
0
votes
2answers
58 views

Instantiating a generic class (Java)

I have always been taught that when instantiating a generic class in your code to do it like so: ArrayList<String> a = new ArrayList<String>(); But when I'm working in Eclipse it always ...
5
votes
4answers
149 views

Why diamond operator is used for Type Inference in Java 7?

List<String> list = new ArrayList(); will result in compiler warning. However the following example compiles without any warning: List<String> list = new ArrayList<>(); I'm ...
5
votes
1answer
81 views

Creating a Map through an anonymous class with the <> [duplicate]

In JDK 1.7 I can create a Collection lets for e.g. say a HashMap like this: private HashMap<String, String> map = new HashMap<>(); With the diamond <> at the end. But if I am ...
7
votes
1answer
420 views

Which file is (perl) diamond operator currently reading from

I'm currently reading from several files coming from command line using the Perl <> (diamond) operator. I'd be able to report to the user messages like "trouble on line $. of file $FILENAME", ...
2
votes
2answers
756 views

Compile Error on Java 7 Diamond Operator: ArrayList<>();

I have this line of code: List<IObserver<?>> observers = new ArrayList<>(); and get the 3 following Errors: Cannot instantiate the type ArrayList<?> Syntax error on token ...
13
votes
2answers
1k views

Java 7 diamond operator: why was it difficult to implement?

I watched the Oracle OTN Virtual Event: Java SE and JavaFX 2.0 (28 Feb 2012) and while talking about the new diamond operator (that Map<String, List<String>> myMap = new HashMap<>(); ...
6
votes
2answers
373 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, ...
2
votes
3answers
98 views

Perl: read from <>

What does reading from <> do in Perl? For example, what will the following do? print for(<>);
5
votes
1answer
252 views

Strange things inside Perl diamond operator

Please, can anyone help me with this: perl -e 'print for <{a,b,c}{1,2,3}>' I just don't understand how it works. And it works! Producing a1a2a3b1b2b3c1c2c3 on output. Does anyone know ...
5
votes
3answers
1k views

Why doesn't the diamond operator work within a addAll() call in Java 7?

Given this example from the generics tutorial. List<String> list = new ArrayList<>(); list.add("A"); // The following statement should fail since addAll expects // Collection<? ...
2
votes
2answers
688 views

Finding pipe and redirects in perl @ARGV

When writing a traditional Unix/Linux program perl provides the diamond operator <>. I'm trying to understand how to test if there are no argument passed at all to avoid the perl script sitting in ...
8
votes
2answers
565 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 ...
0
votes
1answer
188 views

Why wasn't the diamond operator implemented when generics were introduced? [closed]

With Java 7 they finally implemented the diamond operator which lets you omit the repetition on initialization when working with generics. E.g. List<String> list = new ArrayList<>(); ...
11
votes
1answer
541 views

How to fake input to perl's diamond operator?

The answers to this question describe how to fake input to <STDIN>. My goal is similar to that question: my unit test needs to fake input to <>. When I apply the same technique to fake ...
2
votes
4answers
267 views

How do I use the diamond operator as a function call argument in scalar context?

How can I directly pass a value from the diamond operator to a function (sub)? I have tried: #!/usr/bin/perl use Math::Complex; #quadraticEq - quadratic equation with parameters a ,b ,c sub ...
7
votes
5answers
373 views

Why can't I use the diamond operator with an array in Perl?

Code $ cat test1 hello i am lazer nananana $ cat 1.pl use strict; use warnings; my @fh; open $fh[0], '<', 'test1', or die $!; my @res1 = <$fh[0]>; # Way1: why does this not work as ...
95
votes
7answers
22k 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 ...
7
votes
1answer
2k 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 ...
4
votes
2answers
1k views

Why am I getting a closed filehandle error when using the diamond operator in list context in Perl?

This code: foreach my $file (@data_files) { open my $fh, '<', $file || croak "Could not open file $file!\n"; my @records = <$fh>; close $fh; .... } produces this error: ...
4
votes
3answers
425 views

Does the Perl diamond operator iterate over non-magic arrays (not @ARGV)?

I don't think the following should work, but it does: $ perl -e '@a = qw/1222 2 3/; while (<@a>) { print $_ ."\n";}' 1222 2 3 $ As far as I know, Perl's <> operator shoud work on ...
3
votes
3answers
305 views

Can I skip a whole file with the <> operator?

The following Perl code has an obvious inefficiency; while (<>) { if ($ARGV =~ /\d+\.\d+\.\d+/) {next;} ... or do something useful } The code will step through every line of the file we ...
4
votes
7answers
1k views

Perl's diamond operator: can it be done in bash?

Is there an idiomatic way to simulate Perl's diamond operator in bash? With the diamond operator, script.sh | ... reads stdin for its input and script.sh file1 file2 | ... reads file1 and file2 ...