アフィリエイト広告を利用しています

広告

posted by fanblog

2018年03月03日

《その317》 stringクラス(3)


 string型文字列の +=, append による追加更新

h11_000702.png

以下は、プログラムです。

#include <string>
#include <iostream>
using namespace std;

int main() {
cout << "【+=, append による追加更新】\n\n";

cout << "◆string型文字列 s0, s1, s2 "
"を生成\n";
cout << " string s0(\"S0*\");\n";
cout << " string s1(\"S1*\");\n";
cout << " string s2(\"S2*\");\n";

string s0("S0*");
string s1("S1*");
string s2("S2*");
cout << " s0 … " << s0 << '\n';
cout << " s1 … " << s1 << '\n';
cout << " s2 … " << s2 << "\n\n";

cout << "◆+= による追加更新\n";
cout << " string a(\"Aaa\");\n";
cout << " char b[] ={ \"Bbb\" };\n";
cout << " const char* c = \"Ccc\";\n";
cout << " s0 += a;\n";
cout << " s1 += b;\n";
cout << " s2 += c;\n";

string a("Aaa");
char b[] = { "Bbb" };
const char* c = "Ccc";
s0 += a;
s1 += b;
s2 += c;
cout << " s0 … " << s0 << '\n';
cout << " s1 … " << s1 << '\n';
cout << " s2 … " << s2 << "\n\n";

cout << "◆append による追加更新\n";
cout << " s0.append(a);\n";
cout << " s1.append(b);\n";
cout << " s2.append(c);\n";

s0.append(a);
s1.append(b);
s2.append(c);
cout << " s0 … " << s0 << '\n';
cout << " s1 … " << s1 << '\n';
cout << " s2 … " << s2 << "\n\n";

cout << " s0.append(s1, 2, 3);\n";
cout << " s1.append(3, 'z');\n";
cout << " s2.append(s1.begin() + 9, "
"s1.end());\n";

s0.append(s1, 2, 3);
s1.append(3, 'z');
s2.append(s1.begin() + 9, s1.end());
cout << " s0 … " << s0 << '\n';
cout << " s1 … " << s1 << '\n';
cout << " s2 … " << s2 << '\n';
}




この記事へのコメント
コメントを書く

お名前:

メールアドレス:


ホームページアドレス:

コメント:

※ブログオーナーが承認したコメントのみ表示されます。

この記事へのトラックバックURL
https://fanblogs.jp/tb/7386817
※ブログオーナーが承認したトラックバックのみ表示されます。

この記事へのトラックバック

 たまに、クリック お願いします m(_ _)m

 AA にほんブログ村 IT技術ブログ C/C++へ

こうすけ:メール kousuke_cpp@outlook.jp

【1】★★C++ 記事目次★★ ← 利用可能です。
・新版明解C++入門編 / 新版明解C++中級編
・その他 C++ 関連記事

【2】★★こうすけ@C#★★
・C# の初歩的な記事


検索
<< 2018年08月 >>
      1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31  
プロフィール
こうすけさんの画像
こうすけ

 たまに、クリック お願いします m(_ _)m

 AA にほんブログ村 IT技術ブログ C/C++へ

こうすけ:メール kousuke_cpp@outlook.jp

【1】★★C++ 記事目次★★ ← 利用可能です。
・新版明解C++入門編 / 新版明解C++中級編
・その他 C++ 関連記事

【2】★★こうすけ@C#★★
・C# の初歩的な記事


×

この広告は30日以上新しい記事の更新がないブログに表示されております。