Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

C# SortedDictionary.Add() 메서드


C#의 SortedDictionary.Add() 메서드는 지정된 키와 값이 있는 요소를 SortedDictionary에 추가하는 데 사용됩니다.

구문

구문은 다음과 같습니다 -

공개 무효 추가(TKey 키, TValue 값);

위에서 값 키는 추가할 요소의 키이고 val은 추가할 요소의 값입니다.

예시

이제 예를 살펴보겠습니다 -

시스템 사용, System.Collections 사용, System.Collections.Generic 사용, public class Demo { public static void Main(){ SortedDictionary sortedDict =new SortedDictionary(); sortedDict.Add(100, "모바일"); sortedDict.Add(200, "노트북"); sortedDict.Add(300, "데스크톱"); sortedDict.Add(400, "스피커"); sortedDict.Add(500, "헤드폰"); sortedDict.Add(600, "이어폰"); Console.WriteLine("SortedDictionary 키-값 쌍..."); IDictionaryEnumerator 데모Enum =sortedDict.GetEnumerator(); while (demoEnum.MoveNext()) Console.WriteLine("키 =" + demoEnum.Key + ", 값 =" + demoEnum.Value); }}

출력

이것은 다음과 같은 출력을 생성합니다 -

SortedDictionary 키-값 쌍...Key =100, Value =MobileKey =200, Value =LaptopKey =300, Value =DesktopKey =400, Value =SpeakersKey =500, Value =HeadphoneKey =600, Value =이어폰 

예시

다른 예를 살펴보겠습니다 -

시스템 사용, System.Collections 사용, System.Collections.Generic 사용, public class Demo { public static void Main(){ SortedDictionary sortedDict =new SortedDictionary(); sortedDict.Add("A", "John"); sortedDict.Add("B", "앤디"); sortedDict.Add("C", "팀"); sortedDict.Add("D", "라이언"); sortedDict.Add("E", "케빈"); sortedDict.Add("F", "케이티"); sortedDict.Add("G", "브래드"); Console.WriteLine("SortedDictionary 키-값 쌍..."); IDictionaryEnumerator 데모Enum =sortedDict.GetEnumerator(); while (demoEnum.MoveNext()) Console.WriteLine("키 =" + demoEnum.Key + ", 값 =" + demoEnum.Value); Console.WriteLine("\nSortedDictionary에 F 키가 있습니까? ="+sortedDict.ContainsKey("F")); }}

출력

이것은 다음과 같은 출력을 생성합니다 -

SortedDictionary 키-값 쌍...Key =A, Value =JohnKey =B, Value =AndyKey =C, Value =TimKey =D, Value =RyanKey =E, Value =KevinKey =F, Value =KatieKey =G , 값 =BradThe SortedDictionary에는 F 키가 있습니까? =사실