質問編集履歴
3
title
CHANGED
File without changes
|
body
CHANGED
@@ -104,10 +104,10 @@
|
|
104
104
|
int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
|
105
105
|
{
|
106
106
|
hogehogehoge HOGEHOGEHOGE
|
107
|
-
HOGEHOGEHOGE.
|
107
|
+
HOGEHOGEHOGE.Setstr3="あいさつ"
|
108
108
|
|
109
109
|
//悩んでいるところ
|
110
110
|
hoge HOGE
|
111
|
-
HOGE.
|
111
|
+
HOGE.Setstr1 = "おはよう"
|
112
|
-
HOGE.
|
112
|
+
HOGE.Setstr2 = "こんにちわ"
|
113
113
|
}
|
2
誤字
title
CHANGED
File without changes
|
body
CHANGED
@@ -82,7 +82,7 @@
|
|
82
82
|
m_lshoge= s1.m_lshoge;
|
83
83
|
return *this;
|
84
84
|
}
|
85
|
-
bool operator==(const
|
85
|
+
bool operator==(const hogehogehoge&s1)const
|
86
86
|
{
|
87
87
|
return &s1 == this;
|
88
88
|
}
|
1
誤字修正
title
CHANGED
@@ -1,1 +1,1 @@
|
|
1
|
-
C++ リストにつ
|
1
|
+
C++ リストをメンバ変数にもつクラスへの値の入れ方
|
body
CHANGED
@@ -78,8 +78,8 @@
|
|
78
78
|
virtual ~hogehogehoge(){}
|
79
79
|
hogehogehoge&operator=(const hogehogehoge&s1)
|
80
80
|
{
|
81
|
-
|
81
|
+
m_str3 = s1.m_str3;
|
82
|
-
|
82
|
+
m_lshoge= s1.m_lshoge;
|
83
83
|
return *this;
|
84
84
|
}
|
85
85
|
bool operator==(const CIDCXmlRules&s1)const
|