summaryrefslogtreecommitdiffstats
path: root/src/test/input/TestJavac8.java
blob: 068750c0d1641e569ab728e25967426808455e95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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);});	
	}
	
}