ios::nocreate error while compiling a C++ code

╄→尐↘猪︶ㄣ 提交于 2019-12-04 04:16:52

问题


While, compiling a package, written in C++ on RHEL 5.0. I am getting the following error.

> error: nocreate is not a member of std::ios

The source-code corresponds to:

ifstream tempStr(argv[4],ios::in|ios::nocreate);


I have tried

#g++ -O -Wno-deprecated <file.cpp> -o <file>

as well as:

#g++ -O -o <file>

Please suggest a solution.


回答1:


ios::nocreate is not part of standard C++ - what are you expecting it to do?

Edit: From a Google, it seems like it was intended to prevent the file being created if it doesn't already exist. This is the default for ifstreams anyway, so you can just say:

ifstream f( filename );
if ( ! f.is_open() ) {
    // open failed - probably because infput file does not exist  
}



回答2:


Opening a file in read mode (ios::in) won't create it if it doesn't exist. You can just leave off the non-standard nocreate. And since in is the default for ifstream:

ifstream tempStr (argv[4]);



回答3:


You can open the file as a filehandle using fopen and O_CREAT|O_EXCL and then convert it to a stream using

__gnu_cxx::stdio_filebuf<char> filebuf(posix_handle, std::ios::out);
    ostream os(&filebuf);

this uses a non standard extension defined in . If anyone has a better solution, i really want to know!



来源:https://stackoverflow.com/questions/1062861/iosnocreate-error-while-compiling-a-c-code

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!