上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 92 下一页
摘要: ## 介绍 - java.io.DataOutput - public interface DataOutput - 定义了用于以二进制格式写数组、字符、 boolean 值和字符串的方法 ## API 写字节 - write - void write(int b) throws IOExcepti 阅读全文
posted @ 2023-08-23 09:57 流星<。)#)))≦ 阅读(9) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - `java.io.DataInputStream` - `public class DataInputStream extends FilterInputStream implements DataInput` - 支持读取基本数据类型 ## API ### 构造器 - DataIn 阅读全文
posted @ 2023-08-23 09:56 流星<。)#)))≦ 阅读(10) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - java.io.DataInput - public interface DataInput ## API 读取字节 - readFully - `void readFully(byte b[]) throws IOException;` - `void readFully(byte 阅读全文
posted @ 2023-08-23 09:56 流星<。)#)))≦ 阅读(5) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - java.io.BufferedOutputStream - public class BufferedOutputStream extends FilterOutputStream - `write` 方法写入的字节先存入内部的 `byte buf[]` ,填满后再写入文件 ## 阅读全文
posted @ 2023-08-23 09:56 流星<。)#)))≦ 阅读(8) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - java.io.BufferedInputStream - public class BufferedInputStream extends FilterInputStream - `read` 方法读取字节时,先读取内部的缓冲区 `byte buf[]` ,当缓冲区读完后,从底层输 阅读全文
posted @ 2023-08-23 09:56 流星<。)#)))≦ 阅读(12) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - `java.io.Writer` - `public abstract class Writer implements Appendable, Closeable, Flushable` ## API - write - abstract void write(char cbuf[] 阅读全文
posted @ 2023-08-23 09:56 流星<。)#)))≦ 阅读(7) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - java.util.concurrent.locks.AbstractQueuedSynchronizer - public abstract class AbstractQueuedSynchronizer extends AbstractOwnableSynchronizer i 阅读全文
posted @ 2023-08-22 17:40 流星<。)#)))≦ 阅读(32) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - java.util.concurrent.locks.Condition - public interface Condition - Condition将Object监视器方法( wait 、 notify和notifyAll )分解为不同的对象,通过将它们与任意Lock实现的使用 阅读全文
posted @ 2023-08-22 17:40 流星<。)#)))≦ 阅读(11) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - `java.util.concurrent.locks.LockSupport` - `public class LockSupport` ## API ### static - setCurrentBlocker - `void setCurrentBlocker(Object b 阅读全文
posted @ 2023-08-22 17:40 流星<。)#)))≦ 阅读(6) 评论(0) 推荐(0) 编辑
摘要: ## 介绍 - `java.util.concurrent.locks.ReentrantLock` - `public class ReentrantLock implements Lock, java.io.Serializable` - `ReentrantLock` 是使用 AQS 的标准范 阅读全文
posted @ 2023-08-22 17:39 流星<。)#)))≦ 阅读(5) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 92 下一页