首页 > 代码库 > 数组参数 有params 区别

数组参数 有params 区别

public static void testnotparams(int[] par)
{

}

//-----------------------------------------------------------------------------------------------------
public static void test(params int[] par)
{

}
void dfsasa()
{

testnotparams(1, 2);//不可以赋值
testnotparams(new int[] { 1, 2 });

test();
test(new int[] { 1, 2 });
test(1, 2);

}

数组参数 有params 区别