sz94 发表于 2015-3-22 14:12:06

跟着小甲鱼师傅敲代码但是同样的代码我编译有错,求解!

使用软件vs2013!代码如下:
#include<iostream>
#include<string>
#include<fstream>

using namespace std;

class StoreQuote
{
public:
        string quote, speaker;
        ofstream flieOutput;

        StoreQuote();
        ~StoreQuote();

        void inputQuote();
        void inputSpeaker();
        bool write();

};

StoreQuote::StoreQuote()
{
        flieOutput.open("text.txt", ios::app);
}

StoreQuote::~StoreQuote()
{
        flieOutput.close();
}


void StoreQuote::inputQuote(){

        getline(cin, quote);
}


void StoreQuote::inputSpeaker(){

        getline(cin, speaker);

}

bool StoreQuote::write(){

        if (flieOutput.is_open())
        {
                flieOutput << quote << "|" << speaker << endl;
                return true;
        }
        else { return false; }

}


int main()
{
        StoreQuote quote;                //这边显示不能使用类型名,为什么??

        cout << "please input a quote: " << endl;
        quote.inputQuote();

        cout << "please input the speaker:" << endl;
        quote.inputSpeaker();

        if (quote.write())
        {
                cout << "成功写入文件";
        }
        else{
                cout << "写入文件失败";
                return 1;
        }

        return 0;
}

Victory_6226 发表于 2015-3-22 17:27:37

int main(),你main后面的括号应该在英文下输入,修改下就可以了:lol:

sz94 发表于 2015-3-22 18:08:11

Victory_6226 发表于 2015-3-22 17:27
int main(),你main后面的括号应该在英文下输入,修改下就可以了

错误太隐晦了!谢谢!!
页: [1]
查看完整版本: 跟着小甲鱼师傅敲代码但是同样的代码我编译有错,求解!