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
- Swing
- JavaScript
- Dict
- StringBuilder
- event
- 저장소
- 자바
- thread
- 배열
- SpringBoot
- class
- 파이썬
- AssertJ
- c#
- Docker Desktop
- Python
- 프로그래머스스쿨
- 자바스크립트
- join()
- GIT
- JS
- docker
- 클래스
- synchronized
- 스프링부트
- 메소드
- 객체
- array
- Java
- SSL
Archives
- Today
- Total
목록enum (1)
정리노트

서로 관련있는 상수들의 모음을 심볼릭한 명칭의 집합으로 정의한 것(가독성 증가 장점)기술된 명칭들을 기호 상수라 부르며 명시된 순서에 따라0 부터 ~ 순서값을 가지고 정수형으로 교환하여 사용할 수 있다. ++, -- 연산자로 다음 또는 이전 원소로 접근이 가능하다. using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace EnumType{ enum Color { Red, Green, Blue }; internal class EnumType { static void Main(string[] args) { ..
프로그래밍/C#
2023. 6. 21. 13:32