File tree Expand file tree Collapse file tree 4 files changed +10
-4
lines changed
Expand file tree Collapse file tree 4 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,9 @@ namespace std {
1818* basic_istream[link /reference/istream/basic_istream.md]
1919
2020## 概要
21- バッファに保持された文字列への読み取り操作ができるストリーム
21+ `std::basic_istringstream`クラスは、文字列を入力元とするストリームであり、文字列からの読み取り操作ができる。
22+
23+ このクラスは、内部バッファに文字列を保持し、ストリーム操作で文字列の内容を解析することができる。
2224
2325
2426## メンバ関数
Original file line number Diff line number Diff line change @@ -18,7 +18,9 @@ namespace std {
1818* basic_ostream[link /reference/ostream/basic_ostream.md]
1919
2020## 概要
21- バッファに保持された文字列への書き込み操作ができるストリーム
21+ `std::basic_ostringstream`クラスは、文字列への書き込み操作ができる出力ストリームである。
22+
23+ このクラスは、内部バッファに文字列を保持し、ストリーム操作で文字列の内容を組み立てることができる。
2224
2325
2426## メンバ関数
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ namespace std {
1818* basic_streambuf[link /reference/streambuf/basic_streambuf.md]
1919
2020## 概要
21- 文字列を保持するストリームバッファ
21+ `std::basic_stringbuf`クラスは、文字列を保持するストリームバッファであり、文字列を読み書きするストレージとして機能する。
2222
2323
2424## メンバ関数
Original file line number Diff line number Diff line change @@ -18,7 +18,9 @@ namespace std {
1818* basic_iostream[link /reference/istream/basic_iostream.md]
1919
2020## 概要
21- バッファに保持された文字列への読み取りおよび書き込み操作ができるストリーム
21+ `std::basic_stringstream`クラスは、文字列を出力先・入力元とするストリームであり、読み取りと書き込みの両方の操作ができる。
22+
23+ このクラスは、内部バッファに文字列を保持し、ストリーム操作で文字列の内容を組み立てたり、文字列内容を解析したりすることができる。
2224
2325
2426## メンバ関数
You can’t perform that action at this time.
0 commit comments