美文网首页
9.Nio三个重要变量

9.Nio三个重要变量

作者: 未知的证明 | 来源:发表于2019-03-01 16:32 被阅读0次

A container for data of a specific primitive type.A buffer is a linear, finite sequence of elements of a specific primitive type. Aside from its content, the essential properties of a buffer are its capacity, limit, and position:

  • A buffer's capacity is the number of elements it contains. The capacity of a buffer is never negative and never changes.
  • A buffer's limit is the index of the first element that should not be read or written. A buffer's limit is never * negative and is never greater than its capacity.
  • A buffer's position is the index of the next element to be read or written. A buffer's position is never negative and is never greater than its limit.


    image.png

相关文章

网友评论

      本文标题:9.Nio三个重要变量

      本文链接:https://www.haomeiwen.com/subject/raiduqtx.html