为 Kotlin 贡献力量 Participate in Early Access Preview Contribute to the compiler and standard library Contribute to the Kotlin IDE plugin Contribute to other Kotlin libraries and to...
Union 结构 Union 结构 有时需要一种数据结构,不同的场合表示不同的数据类型。比如,如果只用一种数据结构表示水果的“量”,这种结构就需要有时是整数(6个苹果),有时是浮点数(1.5公斤草莓)。 C 语言提供了 Union 结构,用来自定义可以灵活变更的数据结构。它内部包含各种属性,但是所有属性共用一块内存,导致这些属性都是对同一个二进制数据...