gpt4 book ai didi

c# - 让类将自身作为参数传递给泛型基类是邪恶的吗?

转载 作者:可可西里 更新时间:2023-11-01 03:09:20 26 4
gpt4 key购买 nike

我第一次看到一位同事在实现对象池时这样做。他将要被池化的类作为参数传递给通用基类。这个基类列出了池化代码。

奇怪的是基类会知道它的子类。在每个正常情况下,这都被认为是不好的做法。但在这种情况下,parent 只是一种避免编写重复代码的技术解决方案。基类永远不会被任何其他代码引用。

这种构造的一个缺点是它“烧掉了基类”。您不能在层次结构的中间引入通用基类。这个问题可能超出了主题。

下面是一个可以想象的例子:

public abstract class Singleton<T> where T : class
{
public static T Instance { get; private set; }

public Singleton()
{
if (Instance != null)
throw new Exception("Singleton instance already created.");
Instance = (T) (object) this;
}
}

public class MyClass : Singleton<MyClass>
{
}

改进的代码:

public abstract class Singleton<T> where T : Singleton<T>
{
public static T Instance { get; private set; }

public Singleton()
{
if (Instance != null)
throw new Exception("Singleton instance already created.");
Instance = (T) this;
}
}

public class MyClass : Singleton<MyClass>
{
}

最佳答案

没有;这是一个著名的模式,称为 CRTP .
作为虚拟方法的替代品,它在 C++ 中特别有用。

您可以在 IComparable<T> 的 .Net 框架中看到它和 IEquatable<T> .

为了增加稳健性,您应该添加 where T : Singleton<T>

关于c# - 让类将自身作为参数传递给泛型基类是邪恶的吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19246937/

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