Skip to content

Commit b30cc46

Browse files
committed
sstream : 各クラスの概要を補強
1 parent 6a95cca commit b30cc46

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

reference/sstream/basic_istringstream.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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
## メンバ関数

reference/sstream/basic_ostringstream.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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
## メンバ関数

reference/sstream/basic_stringbuf.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
## メンバ関数

reference/sstream/basic_stringstream.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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
## メンバ関数

0 commit comments

Comments
 (0)