我有一個應該在檢查器中填充的公共數組,並且如果該數組爲空,我想要執行某些操作。 該數組在檢查空「大小= 0」檢查檢查器中的數組是否爲空
public GameObject[] objects;
void CheckArray()
{
if (objects.Length < 0) // this doesn't work
{
Debug.Log("Empty!");
}
else
{
Debug.Log("Not Empty"); // this gets logged out
}
}
以上不工作,我想別的東西,但也不起作用:
void CheckArray()
{
if (objects == null) // this doesn't work
{
Debug.Log("Empty!");
}
else
{
Debug.Log("Not Empty"); // this gets logged out
}
}
當'objects.Length'爲'0'時,您在調試日誌中會期待什麼輸出? –