gpt4 book ai didi

c# - C# 泛型方法中的 "where T : class"是什么?

转载 作者:太空狗 更新时间:2023-10-29 19:56:08 24 4
gpt4 key购买 nike

这些方法签名有什么区别?

public void T MyMethod<T>(T parameter)

public void T MyMethod<T>(T parameter) where T : class

他们似乎有相同的结果......那么 where T : class 做了什么?

最佳答案

第二种方法中的T只能是类,不能是结构类型。

参见 Constraints on Type Parameters (C# Programming Guide) :

where T : class

The type argument must be a reference [class] type; this applies also to any class, interface, delegate, or array type.

关于c# - C# 泛型方法中的 "where T : class"是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9658492/

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