Fill in the code below in the underline:
public class Test {
public static void main(String[] args) {
| test.setAction2(________); |
}
public void setAction2(T2 t) {
}
}
interface T2 {
public void m(Double d);
}
◦ (e) -> {System.out.print(e);}
◦ (e) -> System.out.print(e)
◦ e -> System.out.print(e)
◦ () -> System.out.print(e)