unity的结构体中数组的使用


	unity的结构体中数组的使用
[编程语言教程]

tips

1.结构体中包含数组,在使用之前,必须实例化,并规定数组的长度;

2.new 出来的长度并不互相影响,new

struct test
{
public string[] strs;
}

test m_test = new test();

m_test.strs = new string[5];
Debug.Log(m_test.strs.Length);
m_test.strs = new string[2];
Debug.Log(m_test.strs.Length);
m_test.strs = new string[6];
Debug.Log(m_test.strs.Length);

 

输出的结果即为5,2,6.

unity的结构体中数组的使用

原文地址:https://www.cnblogs.com/MoyaoQueen/p/13964216.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » unity的结构体中数组的使用