91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

string類的實現(構造函數,析構函數,運算符重載)

發布時間:2020-07-31 18:55:13 來源:網絡 閱讀:319 作者:劉子蛋gogogo 欄目:編程語言

String類的代碼:

class String
{
public:
	String(char* str="")
	{
		_str = new char[strlen(str) + 1];
		strcpy(_str, str);
	}

	String(const String& str)
	{
		_str = new char[strlen(str._str) + 1];
		strcpy(_str, str._str);
	}

	~String()
	{
		delete[] _str;
	}

	String& operator=(const String& str)
	{
		if (&str == this)
			return *this;

		delete[] _str;

		_str = new char[strlen(str._str) + 1];
		strcpy(_str, str._str);

		return *this;
	}

	bool operator==(const String& str)
	{
		return strcmp(_str, str._str) == 0;
	}

	friend ostream& operator<<(ostream& o,String& str)
	{
		o << str._str;
		return o;
	}
private:
	char* _str;
};

包括構造函數,拷貝構造函數,析構函數,算數運算符重載。


下面是測試代碼:

        String s1 = "hello";
	String s2 = "world";
	String s3 = "o";

	cout << "s1=" << s1 << endl;
	cout << "s2=" << s2 << endl;
	cout << "s3=" << s3 << endl;
	cout << endl;

	String s4(s1);
	String s5(s1);
	String s6(s1);

	s5 = s2;
	cout << "s4=" << s4 << endl;
	cout << "s5=" << s5 << endl;
	cout << (s4 == s5) << endl;
	cout << (s4 == s6) << endl;


測試結果:

string類的實現(構造函數,析構函數,運算符重載)

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

泗洪县| 开封市| 徐州市| 莱芜市| 大余县| 齐河县| 温宿县| 清徐县| 江城| 西藏| 浦东新区| 凤翔县| 武宁县| 赫章县| 新巴尔虎右旗| 台湾省| 涪陵区| 鄂托克前旗| 崇义县| 许昌县| 陕西省| 山丹县| 江华| 顺义区| 仁化县| 拜城县| 桦川县| 滨州市| 黔西县| 新郑市| 武强县| 边坝县| 铜鼓县| 渭南市| 孝昌县| 桐城市| 神木县| 张家港市| 馆陶县| 龙胜| 临洮县|