首頁  >  文章  >  Java  >  java中Buffer的概念是什麼

java中Buffer的概念是什麼

WBOY
WBOY轉載
2023-04-28 17:13:061315瀏覽

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刪除