UnpooledDirectByteBuf原始碼分析

2021-08-01 16:01:42 字數 1175 閱讀 4113

聯絡一下上文的uploadheapbytebuf的實現,其實發現好簡單的

public bytebuf setbytes(int

index, bytebuf src, int srcindex, int

length)

} else

return this;

}

public bytebuf setbytes(int

index, bytebuffer src)

tmpbuf.clear().position(index).limit(index + src.remaining());

tmpbuf.put(src);

return

this;

}

和heap進行對比,非常容易發現,heap因為它就是堆,直接對array進行讀寫操作就行了,和記憶體的直接對索引操作形成了對比。

讀寫操作差不多,不再贅述。

Cartographer原始碼篇 原始碼分析 1

在安裝編譯cartographer 1.0.0的時候,我們可以看到 主要包括cartorgarpher ros cartographer ceres sover三個部分。其中,ceres solver用於非線性優化,求解最小二乘問題 cartographer ros為ros平台的封裝,獲取感測器資料...

AbstractListView原始碼分析3

normal list that does not indicate choices public static final int choice mode none 0 the list allows up to one choice public static final int choice ...

Android AsyncTask原始碼分析

android中只能在主線程中進行ui操作,如果是其它子執行緒,需要借助非同步訊息處理機制handler。除此之外,還有個非常方便的asynctask類,這個類內部封裝了handler和執行緒池。本文先簡要介紹asynctask的用法,然後分析具體實現。asynctask是乙個抽象類,我們需要建立子...