可能的重复:
在 C++ 中的类中重载运算符 <<
运算符重载
有什么办法可以吗?
#include <iostream>
using namespace std;
struct test{
int n;
};
int main(){
test t1;
cin >> t1;
return 0;
}
据我所知,这是不可能的,但是我昨天参加了一次考试,并且那个问题出现了,它要求我编写缺少的功能。
可能的重复:
在 C++ 中的类中重载运算符 <<
运算符重载
有什么办法可以吗?
#include <iostream>
using namespace std;
struct test{
int n;
};
int main(){
test t1;
cin >> t1;
return 0;
}
据我所知,这是不可能的,但是我昨天参加了一次考试,并且那个问题出现了,它要求我编写缺少的功能。