Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为什么 System.Object 是 int 和 string 的基类?
正如MSDN所说:
值类型派生自 System.ValueType,后者派生自 System.Object。从 System.ValueType 派生的类型在 CLR 中具有特殊行为。值类型变量直接包含它们的值,这意味着内存是在声明变量的任何上下文中内联分配的。值类型变量没有单独的堆分配或垃圾收集开销。