Unity 数组中查找是否含有某个元素
时间: 2023-07-08 08:17:24 浏览: 390
数组元素查询
在 Unity 中,可以使用 `Array.IndexOf` 方法来查找一个数组中是否包含某个元素,并且返回该元素在数组中的索引位置。如果数组中不包含该元素,则返回 -1。具体用法可以参考下面的示例代码:
```csharp
using UnityEngine;
using System;
public class Example : MonoBehaviour
{
void Start()
{
// 定义一个包含一些字符串的数组
string[] strings = { "apple", "banana", "orange", "pear" };
// 查找数组中是否包含字符串 "orange",并返回其索引位置
int index = Array.IndexOf(strings, "orange");
if (index != -1)
{
Debug.Log("数组中包含字符串 'orange',索引位置为 " + index);
}
else
{
Debug.Log("数组中不包含字符串 'orange'");
}
}
}
```
运行上面的示例代码,如果数组中包含字符串 "orange",则会输出它在数组中的索引位置;否则会输出 "数组中不包含字符串 'orange'"。
阅读全文