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.
我想知道,班级会被装箱吗?我一直假设每个班级都有一个虚拟表,可以用来识别班级,那么它需要装箱吗?
只有值类型(结构)被装箱。类实例不会被装箱。
不。类是引用类型,因此不需要装箱。装箱用于将值表示为对象(以提供 .NET 的统一类型系统)。由于类的实例已经是对象,因此它们永远不需要装箱。
不,他们不是。
装箱是指将一个基本类型(int、char、long 等...)包装到一个类中(即装箱)。