IShowable.java 80 B

1234567
  1. package com.sf.day08.lambda;
  2. public interface IShowable {
  3. void show();
  4. }