rxjava : lambda

This commit is contained in:
haerong22
2022-03-15 13:02:08 +09:00
parent b807790cd1
commit bed29f3233
5 changed files with 109 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package _01_lambda;
public interface ExInterface {
void getMsg();
default String defaultMethod() {
return "default method";
}
static void print(String msg) {
System.out.println("msg = " + msg);
}
}