📄 resourcereader.java
字号:
package kaffe.lang;import java.io.InputStream;/** * This interface maps a fully qualified class name to an array of bytes. */public interface ResourceReader{ /** * Read byte code. * * @param name fully qualified class name (using dots as separators * and no trailing .class suffix) * @return array of bytes in class file format */ byte[] getByteCode(String name) throws Exception; /** * Read byte code. * * @param name name of the resource, leading slashes are ignored * * @return array of bytes of that resource */ InputStream getResourceAsStream(String name) throws Exception;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -