包含此页的版本:
不含此页的版本:
如果值是 2 的幂,则返回 true。
using UnityEngine;public class Example : MonoBehaviour { void Start() { // prints false Debug.Log(Mathf.IsPowerOfTwo(7)); // prints true Debug.Log(Mathf.IsPowerOfTwo(32)); } }