5
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

std::vectorに入った値をbinary形式で出力する方法メモ

Posted at

cpp std::vector型のコンテナに入った値をbinary形式で出力する方法
毎度探しているのでメモ

write_vector_to_bin.cpp
bool write_binary(std::string filepath, std::vector<float>& vec){
    std::ofstream fout(filepath, std::ios::out | std::ios::binary);
    fout.write((char*)&vec[0], vec.size()*sizeof(vec[0]));
    fout.close();
    return true;
}
read_bin_to_vector.cpp
bool read_binary(std::string filepath, std::vector<float>& vec){
    std::ifstream fin(filepath, std::ios::in | std::ios::binary);
    fin.read((char*)&vec[0], vec.size()*sizeof(vec[0]));
    fin.close();
    return true;
}
5
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?