summaryrefslogtreecommitdiffstats
path: root/src/test/input/TestJavac8.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/input/TestJavac8.java')
-rw-r--r--src/test/input/TestJavac8.java58
1 files changed, 58 insertions, 0 deletions
diff --git a/src/test/input/TestJavac8.java b/src/test/input/TestJavac8.java
new file mode 100644
index 0000000..068750c
--- /dev/null
+++ b/src/test/input/TestJavac8.java
@@ -0,0 +1,58 @@
+package test.input;
+
+import java.io.FileReader;
+import java.io.IOException;
+import java.lang.reflect.Method;
+import java.util.Arrays;
+import java.util.List;
+
+public class TestJavac8 {
+
+// public static void main(String args[]) {
+// new TestJavac8().testLambda();
+// }
+//
+// public void testTryResources() throws IOException {
+//
+// try (FileReader reader = new FileReader("file"); FileReader reader1 = new FileReader("file")) {
+// System.out.println();
+// }
+//
+// }
+//
+// public void testMultiCatch() {
+//
+// try {
+// Method method = getClass().getDeclaredMethod("foo");
+// } catch (NoSuchMethodException | SecurityException e) {
+// e.printStackTrace();
+// }
+// }
+//
+//
+// private void testSwitchString() {
+//
+// String s = "";
+// switch(s) {
+// case "Aa": // "xyz":
+// System.out.println("!");
+// break;
+// case "BB": // "abc":
+// System.out.println("?");
+// break;
+// case "__":
+// System.out.println("_");
+// break;
+// default:
+// System.out.println("#");
+// }
+//
+// }
+
+ public void testLambda() {
+
+ List<Integer> list = Arrays.asList(1, 2, 3, 4, 5, 6, 7);
+ list.forEach(n -> {int a = 2 * n; System.out.println(a);});
+ }
+
+}