Neowise

Using assignment as expression

Oct 14th, 2020
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.15 KB | None | 0 0
  1. ...
  2. InputStream is = new FileInputStream("b.dat");
  3. byte[] buff = new byte[256];
  4. while((int len = is.read(buff)) != - 1) {
  5.  Do something...
  6. }
  7. ...
Advertisement
Add Comment
Please, Sign In to add comment