ServiceLoader: load(Class service) : ServiceLoader « java.util « Java by API






ServiceLoader: load(Class service)

    

import java.util.ServiceLoader;

import javax.tools.JavaCompiler;

public class Main {
  public static void main(String[] args) {
    ServiceLoader<JavaCompiler> compilers = ServiceLoader.load(JavaCompiler.class);
    System.out.println(compilers.toString());

    for (JavaCompiler compiler : compilers)
      System.out.println(compiler);
  }
}

   
    
    
    
  








Related examples in the same category

1.ServiceLoader: toString()