2021-12-04から1日間の記事一覧

AutoCloseable と try-with-resources 文について。

サンプル public interface Agent extends AutoCloseable{ public void execute(); } public class AgentImpl implements Agent{ @Override public void execute(){ System.out.println("AgentImpl::execute"); } @Override public void close() throws Exce…