次週のC++のテストがあり、自分自身を準備しています。私は次のように2つのクラスがあると混乱します。私は行ごとにコードの実行を進めなければならず、マークされた行(x = ...
とy = ...
の中にclass two
)が混乱しています - 実行はどこから行なわれますか?別のクラスの中でクラスのコンストラクタを呼び出す
#include <iostream>
using namespace std;
class one {
int n;
int m;
public:
one() { n = 5; m = 6; cout << "one one made\n"; }
one(int a, int b) {
n = a;
m = b;
cout << "made one one\n";
}
friend ostream &operator<<(ostream &, one);
};
ostream &operator<<(ostream &os, one a) {
return os << a.n << '/' << a.m << '=' <<
(a.n/a.m) << '\n';
}
class two {
one x;
one y;
public:
two() { cout << "one two made\n"; }
two(int a, int b, int c, int d) {
x = one(a, b); //here is my problem
y = one(c, d); //here is my problem
cout << "made one two\n";
}
friend ostream &operator<<(ostream &, two);
};
ostream &operator<<(ostream &os, two a) {
return os << a.x << a.y;
}
int main() {
two t1, t2(4, 2, 8, 3);
cout << t1 << t2;
one t3(5, 10), t4;
cout << t3 << t4;
return 0;
}
どのような問題がありますか?あなたは何をしようとしているのですか? – Cascabel
私がx = one(a、b)になったとき。私はその後にどこに行くべきかわかりません。 – Jack
「どこに行くの?」と「行く場所」とはどういう意味ですか?プログラムの実行を1行ずつトレースしようとしていますか? – Cascabel