史上最も有用なJavaクラス

public class Doer { public static <V> V doIt(Object... args) throws Throwable { if(Math.random() > 0.5) { throw new UnknownError(); } return null; } } 


Source: https://habr.com/ru/post/J117326/


All Articles