0

我有点卡在这个问题上..

头文件* *

#include "Duration.h"

class Track
{
private:

    Duration trackTime;
    std::string trackTitle;

public:

    inline Duration getTrackTime() const;

    inline std::string getTrackTitle() const;

    Track(Duration d  = Duration(0,0,0),std::string trackTitle = "");

};

inline std::string Track::getTrackTitle() const
{
    return trackTitle;
}

** ** cpp文件..** * *

using namespace std;

Track::Track(Duration trackTime , string trackTitle)
{
    this->trackTitle = trackTitle;
    this->trackTime  = trackTime;

}

istream& operator>>(istream& is, Track & t)
{
    Duration trackTime;
    string trackTitle;

    char c1;

    if (is >> trackTime >> c1 >>trackTitle)
    {
        if(c1 == '-')
        {
            t = Track(trackTime,trackTitle);
        }
        else
        {
            is.clear(ios_base::failbit);
        }
    }

    return is;
}

** * **主要* ***

int main(int argc, const char * argv[])
{
    Track track;
    cin >> track;
    cout << track <<endl;


}

我只是测试 ostream 是我所期望的。

但是当我输入这样的字符串时。“0:03:30 - 嘿乔(比利罗伯茨)”

它只打印出“0:03:30 - 嘿”

谁能解释为什么这样的打印结果。?以及如何打印出整个曲目标题。?

4

2 回答 2

2

操作员输入标记,>>由空格分隔(空格/制表符/换行符)。您只输入标题的第一个标记,这就是您输出的内容。

退房getlinehttp ://www.cplusplus.com/reference/string/getline/

于 2012-12-11T03:24:53.127 回答
0

您需要告诉 cin 在阅读曲目标题时不要跳过空格 - 请参阅How to cin Space in c++?

试试下面

if (is >> trackTime >> c1 >>noskipws >>trackTitle)
{
    ...
于 2012-12-11T03:24:56.170 回答