Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
10
votes
1answer
201 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 ...
7
votes
2answers
242 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
5answers
232 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 ...
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 ...
6
votes
2answers
106 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, ...
4
votes
1answer
80 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 ...
4
votes
2answers
377 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
284 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 ...
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 ...
3
votes
3answers
173 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<? ...
3
votes
3answers
190 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 ...
2
votes
3answers
67 views

Perl: read from <>

What does reading from <> do in Perl? For example, what will the following do? print for(<>);
2
votes
2answers
152 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 ...
2
votes
4answers
184 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 ...
0
votes
1answer
82 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<>(); ...