< prev index next >

test/compiler/jvmci/common/testcases/MultipleImplementersInterface.java

Print this page




   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  */
  23 
  24 package compiler.jvmci.common.testcases;
  25 



  26 public interface MultipleImplementersInterface {
  27 
  28     int INT_CONSTANT = Integer.MAX_VALUE;
  29     long LONG_CONSTANT = Long.MAX_VALUE;
  30     float FLOAT_CONSTANT = Float.MAX_VALUE;
  31     double DOUBLE_CONSTANT = Double.MAX_VALUE;
  32     String STRING_CONSTANT = "Hello";
  33     Object OBJECT_CONSTANT = new Object();
  34 
  35     default void defaultMethod() {
  36         // empty
  37     }
  38 
  39     void testMethod();
  40 
  41     default void finalize() throws Throwable {
  42         // empty
  43     }
  44 
  45     default void interfaceMethodReferral(MultipleImplementersInterface obj) {
  46         obj.defaultMethod();
  47     }
  48 
  49     default void lambdaUsingMethod() {
  50         Thread t = new Thread(this::defaultMethod);
  51         t.start();


























  52     }
  53 }


   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  */
  23 
  24 package compiler.jvmci.common.testcases;
  25 
  26 import java.util.HashMap;
  27 import java.util.Map;
  28 
  29 public interface MultipleImplementersInterface {
  30 
  31     int INT_CONSTANT = Integer.MAX_VALUE;
  32     long LONG_CONSTANT = Long.MAX_VALUE;
  33     float FLOAT_CONSTANT = Float.MAX_VALUE;
  34     double DOUBLE_CONSTANT = Double.MAX_VALUE;
  35     String STRING_CONSTANT = "Hello";
  36     Object OBJECT_CONSTANT = new Object();
  37 
  38     default void defaultMethod() {
  39         // empty
  40     }
  41 
  42     void testMethod();
  43 
  44     default void finalize() throws Throwable {
  45         // empty
  46     }
  47 




  48     default void lambdaUsingMethod() {
  49         Thread t = new Thread(this::defaultMethod);
  50         t.start();
  51     }
  52     
  53     default void printFields() {
  54         System.out.println(OBJECT_CONSTANT);
  55         String s = "";
  56         System.out.println(s);
  57     }
  58     
  59     static void staticMethod() {
  60         System.getProperties(); // calling some static method
  61         Map map = new HashMap(); // calling some constructor
  62         map.put(OBJECT_CONSTANT, OBJECT_CONSTANT); // calling some interface method
  63         map.remove(OBJECT_CONSTANT); // calling some default interface method
  64     }
  65     
  66     default void instanceMethod() {
  67         toString(); // calling some virtual method
  68     }
  69     
  70     default void anonClassMethod() {
  71         new Runnable() {
  72             @Override
  73             public void run() {
  74                 System.out.println("Running");
  75             }
  76         }.run();
  77     }
  78 }
< prev index next >