test/tools/javac/lambda/funcInterfaces/LambdaTest2_SAM3.java

Tue, 12 Mar 2013 16:02:43 +0000

author
mcimadamore
date
Tue, 12 Mar 2013 16:02:43 +0000
changeset 1628
5ddecb91d843
parent 0
959103a6100f
permissions
-rw-r--r--

8009545: Graph inference: dependencies between inference variables should be set during incorporation
Summary: Move all transitivity checks into the incorporation round
Reviewed-by: jjg

     1 /*
     2  * Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     8  *
     9  * This code is distributed in the hope that it will be useful, but WITHOUT
    10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    12  * version 2 for more details (a copy is included in the LICENSE file that
    13  * accompanied this code).
    14  *
    15  * You should have received a copy of the GNU General Public License version
    16  * 2 along with this work; if not, write to the Free Software Foundation,
    17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    18  *
    19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    20  * or visit www.oracle.com if you need additional information or have any
    21  * questions.
    22  */
    24 /**
    25  * @test
    26  * @bug 8003280
    27  * @summary Add lambda tests
    28  *   This test is for identifying SAM types #5 and instantiating non-SAM types #7 through inner class,
    29              see Helper.java for SAM types
    30  * @compile LambdaTest2_SAM3.java Helper.java
    31  * @run main LambdaTest2_SAM3
    32  */
    34 import java.util.Collection;
    35 import java.util.List;
    36 import java.util.ArrayList;
    38 public class LambdaTest2_SAM3 {
    39     private static List<String> strs = new ArrayList<String>();
    40     private static List<Integer> integers = new ArrayList<Integer>();
    42     public static void main(String[] args) {
    43         LambdaTest2_SAM3 test = new LambdaTest2_SAM3();
    45         //type #7, Not SAM-convertible, through inner class only:
    46         test.methodFooBar(new FooBar() {
    47                 public int getAge(Number n) {
    48                     System.out.println("getAge(Number n) called");
    49                     return 100;
    50                 }
    51                 public int getAge(Integer i) {
    52                     System.out.println("getAge(Integer i) called");
    53                     return 200;
    54                 }
    55             }
    56         );
    58         //type #7:
    59         test.methodDE(new DE(){
    60                 public int getOldest(List<Integer > list) {
    61                     System.out.println("getOldest(List<Integer> list) called");
    62                     return 100;
    63                 }
    64                 public int getOldest(Collection<?> collection) {
    65                     System.out.println("getOldest(Collection<?> collection) called");
    66                     return 200;
    67                 }
    68             }
    69         );
    71     }
    73     //type #7: Not SAM type
    74     void methodFooBar(FooBar fb) {
    75         System.out.println("methodFooBar(): interface FooBar object instantiated: " + fb);
    76         System.out.println("result=" + fb.getAge(new Byte("10")));
    77         System.out.println("result=" + fb.getAge(new Integer(10)));
    78     }
    80     //type #7: Not SAM type
    81     void methodDE (DE de) {
    82         System.out.println("methodDE(): interface DE object instantiated: " + de);
    83         System.out.println(de.getOldest(integers));
    84         System.out.println(de.getOldest(strs));
    85     }
    86 }

mercurial