Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

11
LINES

< > BotCompany Repo | #1009774 // AbstractOutputStream - leaves only write(byte[], int, int) undefined

JavaX fragment (include)

abstract sclass AbstractOutputStream extends OutputStream {
  public void write(int b) throws IOException {
    write(new byte[] { (byte) b }, 0, 1);
  }
    
  public void write(byte[] b) throws IOException {
    write(b, 0, l(b));
  }
    
  public abstract void write(byte[] buf, int ofs, int len) throws IOException;
}

download  show line numbers  debug dex  old transpilations   

Travelled to 13 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1009774
Snippet name: AbstractOutputStream - leaves only write(byte[], int, int) undefined
Eternal ID of this version: #1009774/3
Text MD5: 2a1535cf9c615bc4d6d609d352140cd7
Author: stefan
Category: javax / audio
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2017-08-16 17:35:58
Source code size: 332 bytes / 11 lines
Pitched / IR pitched: No / No
Views / Downloads: 421 / 1022
Version history: 2 change(s)
Referenced in: [show references]