■ 클래스 계층도를 만드는 방법을 보여준다.
▶ 클래스 계층도 만들기 예제 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
using System; using System.Collections.Generic; ... Type rootType = typeof(Object); List<Type> descendentTypeList = GetDescendentTypeList(rootType); // '자손 타입 리스트 구하기' 참조 ClassInfo rootClassInfo = new ClassInfo(rootType); BuildClassHierarchy(rootClassInfo, descendentTypeList); |
▶ 클래스 계층도 만들기 (C#)
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 |
using System; using System.Collections.Generic; #region 클래스 계층도 만들기 - BuildClassHierarchy(parentClassInfo, descendentTypeList) /// <summary> /// 클래스 계층도 만들기 /// </summary> /// <param name="parentClassInfo">부모 클래스 정보</param> /// <param name="descendentTypeList">자손 타입 리스트</param> public void BuildClassHierarchy(ClassInfo parentClassInfo, List<Type> descendentTypeList) { foreach(Type descendentType in descendentTypeList) { Type parentType = descendentType.GetTypeInfo().BaseType; if(parentType == parentClassInfo.Type) { ClassInfo classInfo = new ClassInfo(descendentType); parentClassInfo.ChildClassInfoList.Add(classInfo); BuildClassHierarchy(classInfo, descendentTypeList); } } } #endregion |