我想询问如何将boost::iostreams::mapped_file
与wchar_t *
一起使用。目前,我发现了以下内容:
boost::iostreams::mapped_file reader("input.txt" , mapped_file::readonly);
char const * it = reader.const_begin();
char const * endit = reader.const_end();
如我所见,界面只允许char *
,但我需要阅读越南语料库(编码UTF-16 LE)。我问的原因是我之前使用过的所有作业,所以如果有的话,我可以再次使用这些代码。