Failure Sharing

Bootup your energy with sharing failure.

2019-06-17から1日間の記事一覧

Mainly used Functional Interface on Java 8

Function, The Transformer 무조건 입력값과 출력값이 있어야 한다. github.com Consumer, The Spartan, Give Them Nothing but Take from Them Everything 말 그대로 무언가를 소비한다. ex. print out without any return. @FunctionalInterface public in…

First Class Function until Java 7

Impossible on Java メソッドをパラメータとして入れる。 public String getName() { ~~ } findByName(getName()) // impossible Return as function return getName; // impossible Javaのメソッドでは、上のことに対応していない。 他言語のfunctionに該当…