1

我一直在使用 Sprite Kit 及其物理特性制作游戏,并在教程中遇到了这个结构:

struct PhysicsCategory
{
    static let None: UInt32 = 0
    static let All: UInt32 = UInt32.max
    static let Player: UInt32 = 0b10
    static let Obstacle: UInt32 = 0b11
}

谁能告诉我 0b01 等是什么意思以及如何在这里创建一个新常量?

4

1 回答 1

2

是hexa,即16个基数

十六进制的 0b11 是

0 * 16^3 + 11 * 16^2 + 1 * 16^1 + 1 * 16^0 = 2816 + 16 + 1 = 2833

在hexa中,10、11、12、13、14、15等数字用字母表示,如a、b、c、d、e、f

在这里查看更多信息。

于 2015-06-23T19:34:17.197 回答