std::map 복사(std::copy)
반응형
#include <map>
if( 0 < mapSource.size() )
{
mapTarget.insert(mapSource.begin(), mapSource.end());
}
또는
#include <map>
#include <algorithm>
if( 0 < mapSource.size() )
{
std::copy(mapSource.begin(), mapSource.end(), std::inserter(mapTarget,mapTarget.begin()));
}
반응형
'IT > C, C++' 카테고리의 다른 글
[c, c++] hex array to string (0) | 2018.12.05 |
---|---|
스트링 마지막에 일치 스트링 찾기(find string) (0) | 2018.12.05 |
std::vector 복사(copy) (0) | 2018.12.05 |
[Jsoncpp] example : Basic, Read File / Write File (기본 사용법, 파일 읽고 쓰는 방법) (0) | 2017.01.15 |
[JSONCPP] JsonCpp 다운로드 및 컴파일 방법 (0) | 2017.01.15 |