首頁 > Java > java教程 > java中Buffer的概念是什麼

java中Buffer的概念是什麼

WBOY
發布: 2023-04-28 17:13:06
轉載
1342 人瀏覽過

1、概念

使用Java NIO Buffers與NIO Channel互動。從Channel讀取資料到buffers裡,從Buffer把資料寫入到Channels;必須對Buffer的三個屬性進行控制,也就是capacities能力、position-location、limit限制。

2、實例

public static void main(String[] args) {
        //生成一个长度为10的缓冲区
        IntBuffer intBuffer = IntBuffer.allocate(10);
        for (int i = 0; i < intBuffer.capacity(); ++i){
            int randomNum = new SecureRandom().nextInt(20);
            intBuffer.put(randomNum);
        }
        //状态翻转
        intBuffer.flip();
        while (intBuffer.hasRemaining()){
            //读取数据
            System.out.print(intBuffer.get() + ",");
        }
        //clear方法本质上并不是删除数据
        intBuffer.clear();
        System.out.print("\n");
        System.out.println("-----------------------------");
        while (intBuffer.hasRemaining()){
            System.out.print(intBuffer.get() + ",");
        }
    }
登入後複製

以上是java中Buffer的概念是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:yisu.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板