以下の内容はhttps://phst.hateblo.jp/entry/2019/06/03/155342より取得しました。


Visual Studio C++ x64のstd::ofstream のwriteには2GBの壁はない

The limitation of the size for the std::ofstream write is not 2GB in Visual Studio 2017. The limitation would be 64bit limits.

std::vector<uchar> v(0x100000000); // 4GB (=2^32)
std::ofstream ofs("o", std::ios::binary);
ofs.write((char*)&v[0], v.size()); //OK
ofs.close();



以上の内容はhttps://phst.hateblo.jp/entry/2019/06/03/155342より取得しました。
このページはhttp://font.textar.tv/のウェブフォントを使用してます

不具合報告/要望等はこちらへお願いします。
モバイルやる夫Viewer Ver0.14