gpt4 book ai didi

c# - 结构、枚举、类、接口(interface),还有什么?

转载 作者:太空狗 更新时间:2023-10-29 23:23:37 27 4
gpt4 key购买 nike

我在编写一些处理反射的辅助函数时一直在思考这个问题。 C#中除了classstructenuminterface还有什么吗?如果我编写一个函数来检查 classstructenuminterface,那会是 包罗万象的功能

我读到delegate无论如何都是类herehere .

帮助我完善我对这种层次结构的想法:

   reference type                   value type
| |
--------------- ----------
| | | |
interface class struct enum


// the all encompassing function - pseudo code:
public static bool IsC#Stuff(this Type type)
{
return type.IsEnum || type.IsStruct || type.IsClass || type.IsInterface;
}

我错过了什么吗?

最佳答案

还有数组和委托(delegate),尽管它们实际上是类。

在泛型方法或类型的定义中也有引用(方法的ref参数)和泛型类型参数。

在不安全的代码中,也有指针。

关于c# - 结构、枚举、类、接口(interface),还有什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16511253/

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