개발 🛠💻40 [C++] emplace_back vs push_back => 객체 이동의 cost 비교 emplace_back과 push_back은 '더 효율적인' 같은 수식어는 붙을 수 없다 입니다. #include#includeint main(){ // Basic example std::vector foo; foo.push_back(10); foo.emplace_back(20); // More tricky example std::vector> foo_bar; //foo_bar.push_back(10); // Throws error!!!! foo_bar.emplace_back(20); // Compiles with no issue std::cout 이 코드를 보면, 'std::vector> foo_bar' 로 이중 벡터가 선언되어 있습니다.push_back을 통하여 데이터를 넣으려면 ve.. 2025. 1. 22. [Perforce] P4EditVS / Helix Plugin for File Explorer - vs 확장 툴 P4EditVS https://marketplace.visualstudio.com/items?itemName=ScottSimpson.p4editvs P4EditVS - Visual Studio MarketplaceExtension for Visual Studio - Simple, fast extension for Perforce to checkout, revert, diff and more, that aims to never slow down your IDE.marketplace.visualstudio.com visual studio에서 설치. vs > Tools > Options > Source Control > Plug-in Selection > Current source c.. 2025. 1. 8. CPU Affinity 적용 https://jeep-shoes.tistory.com/64 2024. 9. 6. NUMA 아키텍쳐 https://netmarble.engineering/single-process-programming-numa-effect https://bluemoon-1st.tistory.com/85 2024. 9. 6. WinMerge를 이용한 Excel Compare https://autohotkey4auto.tistory.com/77 2024. 9. 6. 윈도우 성능 모니터 https://blog.limcm.kr/204 Windows Performance Monitor각각의 Server 나 Client PC 에 대한 성능 분석이 필요할 때가 있습니다. 그럴 때 사용하는 툴이 Windows 에 기본적으로 있는 성능 모니터 입니다. (Performance Monitor) 명령어로 실행시 perfmon 아래와 같이 blog.limcm.kr WPA 문서 https://learn.microsoft.com/ko-kr/windows-hardware/test/wpt/windows-performance-analyzer 2024. 6. 18. 이전 1 2 3 4 ··· 7 다음