[C#] 16일차 - 110. Hashtable과 Dictionary<Tkey, Tvalue>C#/C#200제2021. 2. 14. 11:02
Table of Contents
사용시 주의사항
- 키는 중복될 수 없다. 중복된 키로 저장하면 ArgumentException이 발생한다
- 없는 키로 Hashtable에 접근하면 KeyNotFoundException이 발생한다.
- 배열에서와 같은 순차적인 숫자 인덱스를 사용할 수 없다.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace A110_Dictionary
{
class Program
{
static void Main(string[] args)
{
Dictionary<string, string> colorTable = new Dictionary<string, string>();
colorTable.Add("Red", "빨강색");
colorTable.Add("Green", "초록색");
colorTable.Add("Blue", "파랑색");
foreach (var item in colorTable)
Console.WriteLine("colorTable[{0}] = {1}", item.Key, item.Value);
// 중복되는 키를 추가할 때 예외
try
{
colorTable.Add("Red", "빨강");
}
catch(ArgumentException e)
{
Console.WriteLine(e.Message);
}
// 없는 키를 출력을 원할 때 예외
try
{
Console.WriteLine("Yellow => {0}", colorTable["Yellow"]);
}
catch (KeyNotFoundException e)
{
Console.WriteLine(e.Message);
}
Console.WriteLine("\n" + colorTable["Red"]);
Console.WriteLine(colorTable["Green"]);
Console.WriteLine(colorTable["Blue"]);
}
}
}
반응형
'C# > C#200제' 카테고리의 다른 글
[C#] 16일차 - 112. 인덱서 (0) | 2021.02.14 |
---|---|
[C#] 16일차 - 111. SortedList와 SortedList<Tkey, Tvalue> (0) | 2021.02.14 |
[C#] 16일차 - 109. Stack<T>와 Polish 계산기 (0) | 2021.02.14 |
[C#] 16일차 - 108. Queue<T> 컬렉션의 사용 방법 (0) | 2021.02.14 |
[C#] 15일차 - 107. IComparable 인터페이스를 이용한 객체의 정렬 (0) | 2021.02.13 |
@반나무 :: 반나무_뿌리
3년차 WPF 개발자입니다.
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!