調べログ

C++でstringクラスを使用したコードを作成してみた!

code-2620118_640

string クラスって何かというと文字列のことみたいです。これは基本データ型ではないので、string クラスのオブジェクトとして扱われるみたいです。

// This program demonstrates the string class.
#include <iostream>
#include <string> // Required for the string class.(string クラスを利用したコードの作成)
using namespace std;

int main()
{
string movieTitle;

movieTitle = “I am Sam”;
cout << “My favorite movie is ” << movieTitle << endl;
return 0;
}

以下の通り、表示されます。

My favorite movie is I am Sam



ご面倒おかけしますが、たまにはクリックお願いします!


にほんブログ村


にほんブログ村

モバイルバージョンを終了