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
- php
- Cleancode
- 따배씨
- sorting
- greedy
- BASIC
- web
- 정수론
- 생활코딩
- 인프런
- String
- 따라하면서 배우는 C언어
- Math
- Python
- 따라하며 배우는 C언어
- JavaScript
- C언어
- server
- BOJ
- udemy
- Algospot
- C
- programmers
- BFS
- 백준
- dfs
- graph
- Algorithm
- 종만북
- DP
Archives
- Today
- Total
몽상실현개발주의
[따배씨] 14.18 열거형 본문
따배씨 - 따라하며 배우는 C언어
14강 구조체_2
14.18 열거형 Enumerated Types
- 열거형: 정수형 상수가 마치 이름이 있는 것 처럼 사용 할 수 있게 도와줌
#include <stdio.h>
/*
int c = 0; // red: 0, orange: 1, yellow:2, green:3, ..
if (c == 2)
printf("yellow");
else if (c == 1)
printf("orange");
...
*/
/*
#define RED 1
#define ORANGE 2
#define YELLOW 3
int c = YELLOW;
if (c == YELLOW)
printf("yellow");
else if (c == ORANGE)
printf("orange");
...
*/
int main(){
/*
Enumerated type
- Symbolic names to represent integer constants
- Improve readability and make it easy to maintain
- enum-specifier (struct-specifier, union-specifier)
Enumerators
- The symolic constants
*/
enum spectrum { red, orange, yellow, green, blue, violet };
// 0 1 2 3 4 5
// 나열되어 있는 정수들에게 이름을 붙여 줌
enum spectrum color;
color = blue;
if (color == yellow)
printf("yellow"); //Note: enumerators are not strings
for (color = red; color <= violet; color++) //Note: ++ operator doesn't allow in C++, use type int.
printf("%d\n", color);
printf("red = %d, orange = %d\n", red, orange);
enum kids { jackjack, dash, snoopy, nano, pitz };
// nina has a value of 3
enum kids my_kids = nano;
printf("nano %d %d\n", my_kids, nano);
return 0;
}
#include <stdio.h>
int main(){
enum levels {low = 100, medium = 500, high = 2000};
int score = 800;
if (score > high)
printf("High score!\n");
else if (score > medium)
printf("Good job\n");
// Good job
else if (score > low)
printf("Not bad\n");
else
printf("Do your best\n");
enum pet { cat, dog = 10, lion, tiger };
// puma has a value of 11
printf("Cat %d\n", cat);
// Cat 0
printf("Lion %d\n", lion);
// Lion 11
return 0;
}
enum pet { cat, dog = 10, lion, tiger };
- 숫자를 지정 할 수 있고, 지정된 값을 이어서 증가하여 지정 됨
이 글의 모든 사진과 내용의 출처는 홍정모 교수님께 있음을 알려드립니다.
http://blog.naver.com/atelierjpro
http://www.inflearn.com/course/following-c
'Language > C' 카테고리의 다른 글
[따배씨] 14.20 이름 공간 공유하기 (0) | 2021.07.07 |
---|---|
[따배씨] 14.19 열거형 연습문제 (0) | 2021.07.07 |
[따배씨] 14.17 익명 공용체 (0) | 2021.07.06 |
[따배씨] 14.16 공용체와 구조체를 함께 사용하기 (0) | 2021.07.05 |
[따배씨] 14.15 공용체 Union 의 원리 (0) | 2021.07.05 |
Comments