일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- jupyter lab
- Unity
- 깃
- 플러터
- 구조체
- vim
- gitlab
- Data Structure
- c언어
- Python
- Flutter
- 다트 언어
- Houdini
- 도커
- jupyter
- C++
- dart 언어
- 유니티
- c# winform
- docker
- github
- Algorithm
- 포인터
- c# 추상 클래스
- c# 윈폼
- git
- HTML
- c#
- C언어 포인터
- C# delegate
Archives
- Today
- Total
목록underflow (1)
nomad-programmer
[Programming/C#] 오버플로우(Overflow), 언더플로우(Underflow)
오버플로우 (Overflow) 변수는 데이터를 담는 그릇과 같다. 그릇에 용량을 넘어사는 양의 물을 담으면 넘치는 것처럼, 변수에도 데이터 형식의 크기를 넘어서는 값을 담으면 넘쳐 흐른다. 이런 현상을 "오버플로우(Overflow)"라고 한다. using System; namespace FlowExam { class FlowExample { static int Main(string[] args) { byte variable = byte.MaxValue; Console.WriteLine($"{variable}"); // 오버플로우 발생 variable++; Console.WriteLine($"{variable}"); return 0; } } } /* 결과 255 0 */ byte의 최대값은 255이다. 2..
Programming/C#
2020. 9. 5. 18:30