c++11 - C++ map of a key and file doesn't work -


i want create map of key , corresponding file in c++. used below snipper, giving mean exception @ last line *m_jstabfilesmap[key] << text;:

    std::map<std::string, std::ofstream*> m_jstabfilesmap;     std::string text = "hello all";     std::string key = "a";     *m_jstabfilesmap[key] << text; 

the copy constructor of std::ofstream explicitely deleted. have store streams pointer or in different way doesn't try copy stream object if want them in map.


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -