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 | 31 |
Tags
- 프로그래밍
- CLion
- 본즈앤올
- 학습 알고리즘
- 이코테
- 연산자
- 기계학습
- standford University
- coursera
- C++
- algorithm
- 단항연산자
- #endif
- 코드블럭 오류
- Runtime constants
- Andrew Ng
- regression problem
- decimal
- classification problem
- Machine Learning
- Greedy
- 나동빈님
- 형변환
- 홍정모님
- sizeof()
- compile time constants
- const
- 기계학습 기초
- 코딩테스트
- #define
Archives
- Today
- Total
목록std::endl 특징 (1)
wellcome_공부일기
C++ | 02.08 std::endl vs ‘\n’ 그리고 std::flush
1. std::endl vs ‘\n’ 2. std::endl의 특징 3. ‘\n’의 특징 4. std::flush란? std::endl vs ‘\n’ 일반적으로 콘솔로 텍스트를 출력할 때 std::endl보다 '\n' 문자를 사용하는게 선호됩니다. 그 이유는 std::endl 와 ‘\n’가 ' Flush '를 하느냐 안하느냐의 차이가 있습니다. 여기서 ' Flush ' 란 버퍼에 담긴 데이터가 모두 쏟아지는 것을 말합니다. std::endl의 특징 - std::endl을 사용하면, 커서를 다음 줄로 옮기고, 출력을 "Flush"하는 두 가지 작업을 하기 때문에, 약간 비효율적임 (std::endl의 역할인 Flush는 화면에 결과물이 모두 그리고, 즉시 나타나는지 확실히 해야 하는 일을 함) - 왜냐면 ..
프로그래밍/C++
2020. 5. 9. 23:57