iclasspath.java

来自「专业汽车级嵌入式操作系统OSEK的源代码」· Java 代码 · 共 18 行

JAVA
18
字号
package js.tinyvm;import java.io.IOException;import java.io.InputStream;/** * Interface for class paths. */public interface IClassPath{   /**    * Get input stream with the given class byte code.    *     * @param className name of class with '/' as separator    * @throws IOException if class could not be found in class path    */   public InputStream getInputStream (String className) throws IOException;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?