awtk/docs/manual/tk_istream_buffered_t.md
2019-12-14 13:25:56 +08:00

37 lines
1.1 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## tk\_istream\_buffered\_t
### 概述
![image](images/tk_istream_buffered_t_0.png)
缓冲输入流。
如果调用者每次只读取少量数据可以使用本类对底层istream进行装饰以提高读取效率。
----------------------------------
### 函数
<p id="tk_istream_buffered_t_methods">
| 函数名称 | 说明 |
| -------- | ------------ |
| <a href="#tk_istream_buffered_t_tk_istream_buffered_create">tk\_istream\_buffered\_create</a> | 创建istream对象。 |
#### tk\_istream\_buffered\_create 函数
-----------------------
* 函数功能:
> <p id="tk_istream_buffered_t_tk_istream_buffered_create">创建istream对象。
本函数自动增加real_ostream的引用计数。
* 函数原型:
```
tk_istream_t* tk_istream_buffered_create (tk_istream_t* real_istream, uint32_t buffer_size);
```
* 参数说明:
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | tk\_istream\_t* | 返回istream对象。 |
| real\_istream | tk\_istream\_t* | 实际的istream。 |
| buffer\_size | uint32\_t | 缓冲区的大小。 |