学习的博客:http://elf8848.iteye.com/blog/875830/ 我项目中所用的版本:4.2.0。博客的时间比较早,11年的,学习的是Spring3 MVC。不知道版本上有没有变化比较大的功能。 spring mvc教程(六)转发、重定向、a…
using System.Collections;using System.Collections.Generic;using UnityEngine;public class Test01 : MonoBehaviour{Transform cam;//相机物体Vector3 pos;// Start is called before the first frame updatevoid Start(){pos transform.position;c…
定义泛型数组 在写程序时,大家可能会遇到类似String[] list new String[8];的需求,这里可以定义String数组,当然我们也可以定义泛型数组,泛型数组的定义方法为 T[],与String[]是一致的,下面看看用法&#…