c++建立txt文件,並寫入內容

參考連接: http://blog.csdn.net/kingstar158/article/details/6859379
參考連接: http://www.weixueyuan.net/view/5825.html
參考連接: http://www.cnblogs.com/azraelly/archive/2012/04/14/2446914.html
參考連接: http://blog.csdn.net/lh3325251325/article/details/4761575html

以上大神解釋的很是詳細和全面,不少暫時用不到的就不列了,如下是本身的應用ios

#include <fstream>
#include <iostream>
#incldue <string>

int main()
{
    ofstream location_out;
    string ss;
    ss = 「(1, 2)」;
    location_out.open("location_out.txt", std::ios::out | std::ios::app);  //以寫入和在文件末尾添加的方式打開.txt文件,沒有的話就建立該文件。
       if (!location_out.is_open())
        return 0;

    location_out << ss << endl;
    location_out <<「(」<< 5 << 「,」 << 10 << 「) \n」  ;     //將」(5,10) 回車」寫入.txt文件中

    location_out.close();
}