Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
NONBLOCk モードでファイルを読みたいのですが、現在は C 関数の open/read/write/close を使用しています。それで、同じことをC++で行うことが可能かどうか尋ねています。
はいあります。
ファイルをインクルードし<fstream>たり、オブジェクトまたはオブジェクトを<istream>使用して、ファイルを開いて読み取ることができます。fstreamistream
<fstream>
<istream>
fstream
istream
例えば:fstream A("HI",ios::in)
fstream A("HI",ios::in)
また:istream A("HI")
istream A("HI")
デフォルトはオブジェクトios::in用です。istream
ios::in