Tags
- oracle
- MFC
- UI/UX Engineer
- web developer
- 좋은 개발자
- postman excel
- postman pre-request
- LSL_Script
- solidity
- Android/iOS Developer
- postman session
- C++
- postman collection variables
- 다빈치 리졸브
- Front-end developer
- postman
- postman collection
- Intellij
- c#
- emplace_back
- Interaction developer
- 프런트엔드
- Java
- postman automations
- 우수한 프런트 개발자
- Unity
- postman tests
- postman html parse
- postman csv
- Android
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Archives
- Today
- Total
목록std::plus (1)
david's daily developer note

std::transform 함수는 개별 요소들에 주어진 함수 동작을 적용시킨다. 즉, 여러 요소(elements)로 구성된 자료형에서 각 요소에 주어진 함수를 적용하여 값을 변경하며, 새로운 저장공간에 저장하거나, 기존 값을 변경하는 역할을 한다. 복잡하게 for문을 사용하지 않고 코드가 간결해질 수 있다! 문자열 (std::string)의 각 문자를 대문자로 변환 문자열 lower의 시작 문자부터 마지막 문자까지 ::toupper함수를 적용하여 대문자로 변환하는 예제 string lower = "orange"; std::transform(lower.begin(), lower.end(), lower.begin(), ::toupper); std::cout
[Develop] Native/C++ , C
2022. 11. 6. 23:33