当前位置:   article > 正文

Unity-可变参数params(数组参数)_unity parameter

unity parameter

使用可变参数params关键字实现一个方法,可以参数是1,2或1,2,3或1,2,“a”。输出是参数转换为string拼接起来输出。

//Unity-可变参数params(数组参数)

//使用可变参数params关键字实现一个方法,可以参数是1,2或1,2,3或1,2,"a"。输出是参数转换为string拼接起来输出。

using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using UnityEngine;

public class Demo : MonoBehaviour
{
    int[] testData = { 0 };
    int[] testData2 = { 1, 2 };

    void Start()
    {
        //按数组变量形式来写的话,加params关键字效果是一样的,没有太大区别。
        TestMethod(testData);
        TestMethod(testData2);

        TestMethod2(testData);
        TestMethod2(testData2);

        //把数组变为类似ArrayList这种形式的动态数组,用起来直接写数组的元素作为参数即可。使用起来比较方便。
        TestMethod(3, 4);
        //不加params关键字时,只能用这种形式先定义和分配数组的元素。
        TestMethod2(new int[] { 3, 4 });

        TestMethod3(5, "a", 7.5f);
        TestMethod3(8, 9);


        OutPutString(1, 2);
        OutPutString(1, 2, 3);
        OutPutString(1, 2, "a");


    }


    //增加params关键字可以让数组变为了类似ArrayList这样的动态数组。在使用时,可以直接用TestMethod(1,2);TestMethod(1,2,3);这种形式。
    public void TestMethod(params int[] intData)
    {
        for (int i = 0; i < intData.Length; i++)
        {
            //Debug.Log("1 intData[i] = " + intData[i]);
        }
    }


    public void TestMethod2(int[] intData)
    {
        for (int i = 0; i < intData.Length; i++)
        {
            //Debug.Log("2 intData[i] = " + intData[i]);
        }
    }


    public void TestMethod3(params object[] intData)
    {
        for (int i = 0; i < intData.Length; i++)
        {
            //Debug.Log("3 intData[i] = " + intData[i]);
        }
    }

    public string OutPutString(params object[] data)
    {
        try
        {
            StringBuilder stringBuilder = new StringBuilder();
            foreach (var item in data)
            {
                string str = Convert.ToString(item);
                stringBuilder.Append(str);
            }
            Debug.Log($"OutPutString = {stringBuilder.ToString()}");
            return stringBuilder.ToString();
        }
        catch (Exception ex)
        {
            Debug.Log($"ex = {ex}");
            return "";

        }
    }


}


  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/125312?site
推荐阅读
相关标签
  

闽ICP备14008679号