일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- 영국일상
- 영국이직
- 맨체스터개발자
- 영국 워홀
- 해외취업
- 영국 개발자
- 맨체스터 개발자
- 해외개발자
- Python
- 영국직장인
- 파이썬
- 영국워킹홀리데이
- 영국코로나
- 맨체스터 일상
- 맨체스터생활
- 영국개발자
- 영국면접
- 영국워홀
- 영국취업
- 맨체스터일상
- 영국세금
- 맨체스터
- 영국생활
- 영국구직
- 영국항공
- 영국 워킹홀리데이
- 맨체스터 트램
- laravel
- php
- 영어이메일
- Today
- Total
목록Modern C++ (2)
맨체스터 사는 개발자
https://stackoverflow.com/questions/36812132/splitting-stdwstring-into-stdvector Splitting std::wstring into std::vector This question shows how to split a string into a vector using a single character delimeter. Question: Right way to split an std::string into a vector However, applying this technique to wstring i... stackoverflow.com std::wstring str = L"the;quick;brown;fox", temp; std::vector..
C++ 로 개발하면서 vector 의 중요성은 말할 필요도 없고 iterators 나 modifiers 사용법은 흔하기 때문에 오늘은 vector 의 메모리 사용에 대해서 정리. 벡터는 배열과 마찬가지로 연속적인 저장 위치를 사용하기 때문에 배열처럼 대괄호로 접근할 수 있다. 벡터의 크기가 동적으로 변하기 때문에 가끔 벡터를 linked list 로 생각하는 사람들이 있는데 이는 틀린 것이다. https://stackoverflow.com/questions/4700052/are-vector-a-special-case-of-linked-lists Are vector a special case of linked lists? When talking about the STL, I have several sc..