代码之家  ›  专栏  ›  技术社区  ›  RunLoop

随机C/Objective-C问题

  •  0
  • RunLoop  · 技术社区  · 14 年前

    1. if(!(counter&7))
    2. ds->direction = ts->direction;
    3 回复  |  直到 12 年前
        1
  •  3
  •   Paul R    14 年前
    1. 如果 counter

    2. direction 元素 *ds 元素 *ts

        2
  •  2
  •   Chuck    14 年前

    direction 方向 另一个的成员。

        3
  •  1
  •   pmg    14 年前

    1. if (!(counter & 7))
    2. if ((!(counter & 7)) != 0)
    3. if ((counter & 7) == 0)

    2) 与相同

    1. (*ds).direction = (*ts).direction;
    2. 设置方向 ds ts