将 istream 运算符 >> 转换为 istream getline
Converting istream operator >> to istream getline
我正在尝试使用 istream& getline
而不是 istream& operator
.
从文件中读取行
结果 cpp
#include "Result.h"
Result::Result()
{
Coursename[0] = '[=10=]';
}
Result::Result( const char * nam, unsigned scor )
{
strncpy( Coursename, nam, CourseNameSiz );
score = scor;
}
//istream& getline( istream & input, Result & Re, ',' )
istream & operator >>( istream & input, Result & Re )
{
//getline(Re.Coursename, input, ',');
input >> Re.Coursename >> Re.score;
return input;
}
ostream & operator <<( ostream & os, const Result & Re )
{
os << " Unit Name: " << Re.Coursename << '\n'
<< " Result: " << Re.score << '\n';
return os;
}
int Result::GetScore() const
{
return score;
}
inline void Result::SetScore( unsigned scor )
{
score = scor;
}
结果header
#ifndef RESULT_H
#define RESULT_H
#include <iostream>
#include <string.h>
#include <string>
using namespace std;
const unsigned CourseNameSiz = 10;
class Result
{
public:
Result();
Result( const char * nam, unsigned scor );
int GetScore() const;
// Get the number of s.
void SetScore( unsigned scor );
// Set the number of score.
//string Result:GetCourseName() const;
friend ostream & operator <<( ostream & os, const Result & Re );
//friend istream & getline( istream & input, Result & Re, ',' );
friend istream & operator >>( istream & input, Result & Re );
private:
char Coursename[CourseNameSiz];
//string Coursename[CourseNameSiz]; // Unit name, C style string
int score; // number of scores
string str;
};
#endif // RESULT_H
这一切都完全按照我想要的方式工作,但我需要更改它,而不是一次读一个词,我想使用带有分隔符的 istream& getline。代码中的大部分注释是我尝试更改为 getline 方法。我制作了一个字符串数组,作为测试,我试图将读取文件中的第一项放入其中,但显然没有用。
我只是想在这里寻找一点指导。提前致谢
编辑::
输入文件:rinput.txt
31525 1 4
JPN_101 3 Japanese, 90,
ICT 4 example1, 91,
TIC 4 example2, 92,
CIT 4 example3, 93
所以在上面写着 example1 和 91 的地方,这是我尝试使用 getline 和分隔符的两个项目,因为我想在我的读取文件中使用空格
其他信息以不同的方式读取类,当我使用这个方法时,我将更改为 getline 方法。
输出文件:routput.txt
Student ID: 31525
Semester: 1
Unit: JPN_101
Credits: 3
Unit Name: Japanese
Result: 90
Unit: ICT
Credits: 4
Unit Name: example1
Result: 91
Unit: TIC
Credits: 4
Unit Name: example2
Result: 92
Unit: CIT
Credits: 4
Unit Name: example3
Result: 93
Number of courses = 4
Total credits = 15
这是我对数组字符使用运算符方法时的输出。
include\Result.h|28|error: expected identifier before ','|
include\Result.h|28|error: expected ',' or '...' before ','|
||=== Build failed: 2 error(s), 0 warning(s) (0 minute(s), 1 second(s)) ===|
指向 header 文件第 28 行,即 friend istream & getline( istream & input, Result & Re, ',' );
我相信我只是不明白为什么只是将其更改为字符串数组 (string Coursename[CourseNameSiz];
) 然后将 operator
方法更改为 getline
方法并不能使它 return 与运算符方法一样的输入。
我希望我解释得对,我让别人稍微翻译一下以帮助我更好地表达它。
谢谢
这一行
friend istream & getline( istream & input, Result & Re, ',' );
不会编译,因为你有一个常量作为第三个参数而不是参数声明。
在您的情况下,因为您在方法内对 getline 的调用中硬编码 ','
,所以根本不需要传入逗号。
friend istream & getline( istream & input, Result & Re);
同样,在定义函数的时候,函数定义中不需要','
:
istream& getline( istream & input, Result & Re)
{
getline(Re.Coursename, input, ',');
return input;
}
请注意,您在 getline
.
的内部调用中仍然需要逗号
这应该可以解决您列出的编译器错误,如果它不起作用,您仍然需要调试您的代码。
我正在尝试使用 istream& getline
而不是 istream& operator
.
结果 cpp
#include "Result.h"
Result::Result()
{
Coursename[0] = '[=10=]';
}
Result::Result( const char * nam, unsigned scor )
{
strncpy( Coursename, nam, CourseNameSiz );
score = scor;
}
//istream& getline( istream & input, Result & Re, ',' )
istream & operator >>( istream & input, Result & Re )
{
//getline(Re.Coursename, input, ',');
input >> Re.Coursename >> Re.score;
return input;
}
ostream & operator <<( ostream & os, const Result & Re )
{
os << " Unit Name: " << Re.Coursename << '\n'
<< " Result: " << Re.score << '\n';
return os;
}
int Result::GetScore() const
{
return score;
}
inline void Result::SetScore( unsigned scor )
{
score = scor;
}
结果header
#ifndef RESULT_H
#define RESULT_H
#include <iostream>
#include <string.h>
#include <string>
using namespace std;
const unsigned CourseNameSiz = 10;
class Result
{
public:
Result();
Result( const char * nam, unsigned scor );
int GetScore() const;
// Get the number of s.
void SetScore( unsigned scor );
// Set the number of score.
//string Result:GetCourseName() const;
friend ostream & operator <<( ostream & os, const Result & Re );
//friend istream & getline( istream & input, Result & Re, ',' );
friend istream & operator >>( istream & input, Result & Re );
private:
char Coursename[CourseNameSiz];
//string Coursename[CourseNameSiz]; // Unit name, C style string
int score; // number of scores
string str;
};
#endif // RESULT_H
这一切都完全按照我想要的方式工作,但我需要更改它,而不是一次读一个词,我想使用带有分隔符的 istream& getline。代码中的大部分注释是我尝试更改为 getline 方法。我制作了一个字符串数组,作为测试,我试图将读取文件中的第一项放入其中,但显然没有用。
我只是想在这里寻找一点指导。提前致谢
编辑:: 输入文件:rinput.txt
31525 1 4
JPN_101 3 Japanese, 90,
ICT 4 example1, 91,
TIC 4 example2, 92,
CIT 4 example3, 93
所以在上面写着 example1 和 91 的地方,这是我尝试使用 getline 和分隔符的两个项目,因为我想在我的读取文件中使用空格
其他信息以不同的方式读取类,当我使用这个方法时,我将更改为 getline 方法。
输出文件:routput.txt
Student ID: 31525
Semester: 1
Unit: JPN_101
Credits: 3
Unit Name: Japanese
Result: 90
Unit: ICT
Credits: 4
Unit Name: example1
Result: 91
Unit: TIC
Credits: 4
Unit Name: example2
Result: 92
Unit: CIT
Credits: 4
Unit Name: example3
Result: 93
Number of courses = 4
Total credits = 15
这是我对数组字符使用运算符方法时的输出。
include\Result.h|28|error: expected identifier before ','|
include\Result.h|28|error: expected ',' or '...' before ','|
||=== Build failed: 2 error(s), 0 warning(s) (0 minute(s), 1 second(s)) ===|
指向 header 文件第 28 行,即 friend istream & getline( istream & input, Result & Re, ',' );
我相信我只是不明白为什么只是将其更改为字符串数组 (string Coursename[CourseNameSiz];
) 然后将 operator
方法更改为 getline
方法并不能使它 return 与运算符方法一样的输入。
我希望我解释得对,我让别人稍微翻译一下以帮助我更好地表达它。
谢谢
这一行
friend istream & getline( istream & input, Result & Re, ',' );
不会编译,因为你有一个常量作为第三个参数而不是参数声明。
在您的情况下,因为您在方法内对 getline 的调用中硬编码 ','
,所以根本不需要传入逗号。
friend istream & getline( istream & input, Result & Re);
同样,在定义函数的时候,函数定义中不需要','
:
istream& getline( istream & input, Result & Re)
{
getline(Re.Coursename, input, ',');
return input;
}
请注意,您在 getline
.
这应该可以解决您列出的编译器错误,如果它不起作用,您仍然需要调试您的代码。