import com.google.auto.service.AutoService; @AutoService public interface HelloService { void sayHello(); } ServiceLoader<HelloService> serviceLoader = ServiceLoader.load(HelloService.class); for (HelloService helloService : serviceLoader) { helloService.sayHello(); }


上一篇:
下一篇:
切换中文