cross-platform从std :: fstream
The primary reason for seeking a conversion from std::fstream to FILE* is the lack of cross-platform support for an natively available solution.
Limitations of不幸的是,std :: fstream实现没有直接的方法来从std :: fstream对象中提取文件句柄。 This is because the implementation of std::fstream is not standardized to use FILE, leaving it at the discretion of the underlying implementation.
Alternatives to Conversion
As a result, it is not recommended to attempt a conversion between std::fstream and FILE*.相反,请考虑以下替代方案: 使用C包装器函数:
编写一个接受std :: fstream并提供文件*界面的包装函数。对象,包括std :: fstream。考虑funopen()(non-posix):
尽管不是posix api,funopen()允许您创建一个文件对象并指定自定义文件操作。您可以使用std :: fstream对象编写函数来处理读,写,寻求和关闭操作。免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3