SortedList 개체의 키 목록을 가져오려면 코드는 다음과 같습니다. -
예시
시스템 사용, System.Collections 사용, public class Demo { public static void Main(String[] args) { SortedList list1 =new SortedList(); list1.Add("하나", 1); list1.Add("2", 2); list1.Add("3", 3); list1.Add("4", 4); list1.Add("5", 5); list1.Add("6", 6); list1.Add("세븐", 7); list1.Add("8", 8); list1.Add("아홉", 9); list1.Add("10", 10); Console.WriteLine("SortedList1 요소..."); foreach(목록1의 사전 항목 d) { Console.WriteLine(d.Key + " " + d.Value); } Console.WriteLine("\n키 목록...SortedList1"); IList 목록 =list1.GetKeyList(); foreach(목록의 문자열 res) Console.WriteLine(res); SortedList list2 =새로운 SortedList(); list2.Add("A", "액세서리"); list2.Add("B", "책"); list2.Add("C", "스마트 웨어러블 기술"); list2.Add("D", "가정용품"); Console.WriteLine("\nSortedList2 요소..."); foreach(목록2의 사전 항목 d) { Console.WriteLine(d.Key + " " + d.Value); } Console.WriteLine("\n키 목록...SortedList2"); 목록 =list2.GetKeyList(); foreach(목록의 문자열 res) Console.WriteLine(res); }}
출력
이것은 다음과 같은 출력을 생성합니다 -
SortedList1 요소...8 85 54 49 9하나 17 76 610 103 32 2키 목록...SortedList1EightFiveFourNineOneSevenSixTenThreeTwoSortedList2 요소...A AccessoriesB BooksC Smart WearableList2 TechD...예시
다른 예를 살펴보겠습니다 -
시스템 사용, System.Collections 사용, public class Demo { public static void Main(String[] args) { SortedList list =new SortedList(); list.Add("하나", 1); list.Add("2", 2); list.Add("3", 3); list.Add("4개", 4); list.Add("5", 5); Console.WriteLine("SortedList 요소..."); foreach(목록의 DictionaryEntry d) { Console.WriteLine(d.Key + " " + d.Value); } Console.WriteLine("\n키 목록...SortedList"); IList 열 =목록.GetKeyList(); foreach(열의 문자열 res) Console.WriteLine(res); }}출력
이것은 다음과 같은 출력을 생성합니다 -
SortedList 요소...5 5Four 4One 1Three 3Two 2키 목록...SortedListFiveFourOneThreeTwo