반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- singly Linked List
- Biconnected_Component
- c++
- 구현
- Articulation_Point
- 자료구조
- sort
- class_template
- 백준
- data_structure
- list
- 13305
- 알고리즘
- 총정리
- Critical_Path_Analysis
- Heap
- Pair
- Algorithm
- 예제
- qsort
- STL
- '0'
- connected_component
- deletion
- 5397
- template
- sstream
- function_template
- red-black tree
- 문법
Archives
- Today
- Total
- Today
- Total
- 방명록
목록stoi (1)
어제의 나보다 성장한 오늘의 나
[c++] ( int to char / char to int / int to string / string to int ) 정리 및 예제 (to_string , stoi , '0' , 48)
오늘은 c++에서 변수의 타입을 변경해야 할 때 사용하는 함수 및 방법을 정리해봤다. Ps에서 정말 많이 사용 되기 때문에 반드시 알고 있어야 한다. 1) int -> char 변환 ◎ '0' or 48을 더해준다. int before = 3; char after = before + '0'; // int -> char 변환. char after = before + 48; // 이렇게 써도 결과가 같다. 2) char -> int 변환 ◎ '0' 이나 48을 빼준다. char before = '3'; int after = before - '0'; // char -> int int after = before - 48; // 대체 가능 1) 2) 가 가능한 이유 '0' 이 아스키 코드 48 이다. 그리고 '1..
c++/문법
2022. 2. 23. 00:39