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.
哪个 Linux 类相当于 Windows MFC 类 CStdioFile?
我正在将一些类移植到 linux。
没有这样的 Linux 类等价物。Linux 上不存在 MFC。(我以为它已经在 Windows 上消失了。)
在 Linux 上尽可能接近 MFC 类的最佳选择是使用 wxWidgets。例如,它有一个wxFFile用于缓冲 I/O 的类。
wxFFile
否则,使用 C++ 类std::iostream。界面确实与CFile虽然不同。
std::iostream
CFile