using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace 方法 { class Program { static void Main(string[] args) { Console.WriteLine(mysum(1, 2, 3, 4, 5, 6)); } static long mysum(params long[] v)//这里利用params关键字可以使得调用时的参数的个数可变 { long total; int i; int j; for (total = 0, i = 0,j=0; i < v.Length;++i )//可以看到for循环的值的初始化过程中有3个参数都被赋值 { total+=v[i]; } return total; } } }
1,当调用方法的参数个数未知时,可以利用params动态设置参数数组
2,可以在for循环中给多个变量赋值,并利用,号隔开。但是在for循环中声明的变量,只能作用于该循环块中。
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系我们删除。