gpt4 book ai didi

c# - 使用什么术语来表示继承层次结构中两种类型之间的距离?

转载 作者:行者123 更新时间:2023-12-01 22:19:57 25 4
gpt4 key购买 nike

我有一个扩展方法来计算基类型和派生类型之间的距离,这样相同的类型将返回值 0,而直接子类型将返回值 1。最简洁和最简单的方法是什么?描述这个标量的常用术语?

更具体地说,我可以将以下方法命名为什么,这样才有意义并有效地传达意图?

    public static int? CalculateHowDeeplyDerivedTheDescendantTypeIsFromTheBaseType(this Type baseType, Type descendantType)
{
baseType = baseType ?? typeof(System.Object);
descendantType = descendantType ?? typeof(System.Object);
if (!baseType.IsAssignableFrom(descendantType))
return descendantType.IsAssignableFrom(baseType)
? -1*CalculateHowDeeplyDerivedTheDescendantTypeIsFromTheBaseType(descendantType, baseType)
: null;
if (baseType == descendantType)
return 0;
return CalculateHowDeeplyDerivedTheDescendantTypeIsFromTheBaseType(baseType, descendantType.BaseType) + 1;
}

最佳答案

我认为您要查找的术语是 Depth of Inheritance .

Depth of inheritance, also called depth of inheritance tree (DIT), is defined as “the maximum length from the node to the root of the tree”

关于c# - 使用什么术语来表示继承层次结构中两种类型之间的距离?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16225817/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com