鱼C论坛

 找回密码
 立即注册
查看: 1324|回复: 2

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

[复制链接]
发表于 2015-3-22 14:12:06 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
使用软件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;
}

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2015-3-22 17:27:37 | 显示全部楼层
int main(),你main后面的括号应该在英文下输入,修改下就可以了:lol:
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2015-3-22 18:08:11 | 显示全部楼层
Victory_6226 发表于 2015-3-22 17:27
int main(),你main后面的括号应该在英文下输入,修改下就可以了

错误太隐晦了!谢谢!!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-25 19:32

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表