是否可以将数据类型视为输入流?
int main(int argc, char *argv[])
{
Move move;
ifstream inf("eof.txt");
inf >> move;
return 0;
}
istream& operator>> (istream &is, Move &move)
{
is >> move.c; // c = char c[2];
cout << move.c << endl;
return is;
}
eof.txt 有 2 个字符的行,因此如果它有“9r”,“9r”将存储在 move 的数据成员中(我将其公开只是为了方便)。为了确保这一点有效,我输出了 move 的数据,并且果然它有效
我想做的是使用相同的运算符,但不是从文件或标准输入中获取输入,我将拥有一个包含所需数据的数据成员输入。因此,在 main 中,如果我有一个带有“1d”的 char 数组,我需要能够使用相同的函数(不修改它)来执行相同的操作。
这可能吗?任何帮助表示赞赏。
int main(int argc, char *argv[])
{
Move move;
ifstream inf("eof.txt");
inf >> move;
return 0;
}
istream& operator>> (istream &is, Move &move)
{
is >> move.c; // c = char c[2];
cout << move.c << endl;
return is;
}
eof.txt has lines of 2 chars, so if it had "9r", "9r" would be stored in move's data member (I made it public just for ease). To make sure this works I output the data of move and sure enough it works
What I'm trying to do is use this same operator, but instead of getting input from say a file or stdin, I will have a datamember that holds the desired input. Thus in main, if I have a char array with "1d", I need to be able to use the same function (without modifying it) to do the same thing.
Is this possible? Any help appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
stringstream
:You can use a
stringstream
: