2

我已按照网上的说明进行操作,此代码假设将输入添加到文件“数据库”的末尾。但是当我检查时,数据会覆盖现有数据。请帮忙,这是我的代码:

int main(){
    string name;
    string address;
    string handphone;
    cout << "Name: ";
    getline(cin, name);
    cout << "Address: ";
    getline(cin, address);
    cout << "Handphone Number: ";
    getline(cin, handphone);
    ofstream myfile("database", ios_base::ate);
    myfile.seekp( 0, ios_base::end );
    myfile << name<<endl;
    myfile << address<<endl;
    myfile << handphone<<endl;
    myfile.close();
}
4

1 回答 1

3

利用:

ofstream myfile("database",  ios::out | ios::app);

ios::out:为输出操作打开。

ios::app:所有输出操作都在文件末尾执行,将内容附加到文件的当前内容中。此标志只能在为仅输出操作打开的流中使用。

于 2012-12-24T06:17:32.833 回答