重複の可能性:
C++ のクラス内で operator<< を
オーバーロードする
これが可能な方法はありますか?
#include <iostream>
using namespace std;
struct test{
int n;
};
int main(){
test t1;
cin >> t1;
return 0;
}
私が知っている限り、それは不可能ですが、昨日試験があり、その質問がありました。不足している機能を書くように求められました。
重複の可能性:
C++ のクラス内で operator<< を
オーバーロードする
これが可能な方法はありますか?
#include <iostream>
using namespace std;
struct test{
int n;
};
int main(){
test t1;
cin >> t1;
return 0;
}
私が知っている限り、それは不可能ですが、昨日試験があり、その質問がありました。不足している機能を書くように求められました。