add: module threads; read and write binary file supports

This commit is contained in:
hyb1996
2017-12-03 14:13:34 +08:00
parent 1413bf21a5
commit 6fb6e14369
11 changed files with 172 additions and 6 deletions

View File

@@ -1,10 +1,17 @@
package com.stardust.pio;
import java.io.Closeable;
import java.io.IOException;
/**
* Created by Stardust on 2017/4/6.
*/
public class PReadableBinaryFile extends PFiles {
public class PReadableBinaryFile implements Closeable {
@Override
public void close() throws IOException {
}
}