We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 69150d9 + ca8780e commit 4f9b252Copy full SHA for 4f9b252
reference/istream/basic_istream/get.md
@@ -7,13 +7,13 @@
7
```cpp
8
// 1文字
9
int_type get();
10
-basic_istream<CharT, Traits>& get(char_type c);
+basic_istream<CharT, Traits>& get(char_type& c);
11
12
// 文字列
13
basic_istream<CharT, Traits>& get(char_type* s, streamsize n);
14
basic_istream<CharT, Traits>& get(char_type* s, streamsize n, char_type delim);
15
-basic_istream<CharT, Traits>& get(basic_streambuf<char_type, Traits>* sb);
16
-basic_istream<CharT, Traits>& get(basic_streambuf<char_type, Traits>* sb, char_type delim);
+basic_istream<CharT, Traits>& get(basic_streambuf<char_type, Traits>& sb);
+basic_istream<CharT, Traits>& get(basic_streambuf<char_type, Traits>& sb, char_type delim);
17
```
18
19
##概要
0 commit comments