ZenScript main repository
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Reader.zs 245B

12345678910
  1. export interface Reader {
  2. ~this;
  3. read() as int throws IOException;
  4. read(buffer as char[]) as int throws IOException
  5. => read(buffer, 0, buffer.length);
  6. read(buffer as char[], offset as int, length as int) as int throws IOException;
  7. }