C#中params参数的用法!!!!

2024-12-26 20:51:21
推荐回答(4个)
回答1:

//参数可以为多个int型,例如GetWord("This is a dag.", 2);返回"a"
//而GetWord("This is a dag.", 1, 2);则返回"is a"
//GetWord("This is a dag.", 0, 2);返回"This a"
public string GetWord(string s,params int[] n)
{
string value="";
string[] str = s.split(" ");
foreach(int i in n)
{
if(i }
return value.Trim();
}
不知道是不是你想要的。。有问题可以HI我。

回答2:

params
我在数据访问时用过
public static int ExecuteNonQuery(string cmmdText, CommandType cmdType, params SqlParameter[] parameters)
{}

回答3:

public string GetWord(string s,int n)
{
string[] str = s.split(" ");
return str[n-1];
}

回答4:

params 构造函数声明数组 而不知道数组长度 用的
在方法声明中的 params 关键字之后不允许任何其他参数,并且在方法声明中只允许一个 params 关键字。
using System;
public class MyClass
{

public static void UseParams(params int[] list)
{
for (int i = 0 ; i < list.Length; i++)
{
Console.WriteLine(list[i]);
}
Console.WriteLine();
}

public static void UseParams2(params object[] list)
{
for (int i = 0 ; i < list.Length; i++)
{
Console.WriteLine(list[i]);
}
Console.WriteLine();
}

static void Main()
{
UseParams(1, 2, 3);
UseParams2(1, 'a', "test");

// An array of objects can also be passed, as long as
// the array type matches the method being called.
int[] myarray = new int[3] {10,11,12};
UseParams(myarray);
}
}

输出
1
2
3

1
a
test

10
11
12