add default buffer size

This commit is contained in:
Looly
2019-08-16 19:47:59 +08:00
parent 796fac2458
commit a91686a7e1
3 changed files with 20 additions and 6 deletions

View File

@@ -0,0 +1,13 @@
package cn.hutool.core.io;
import org.junit.Test;
import cn.hutool.core.lang.Console;
public class IoUtilTest {
@Test
public void moveTest() {
Console.log(2 << 14);
}
}