C#中类中的方法怎么返回2个数组

发布网友 发布时间:2024-10-11 14:07

我来回答

1个回答

热心网友 时间:2024-10-12 02:58

利用ref关键字
public double[] panduan4(int n, ref double[] K, ref double[] M, double Eg)
{

}
举例:
public int chan(ref int a,ref int b){
a=2;
b=3;
}
调用:
int a=1,b=2
chan(ref a,ref b);
这时a=2,b=3

热心网友 时间:2024-10-12 02:55

利用ref关键字
public double[] panduan4(int n, ref double[] K, ref double[] M, double Eg)
{

}
举例:
public int chan(ref int a,ref int b){
a=2;
b=3;
}
调用:
int a=1,b=2
chan(ref a,ref b);
这时a=2,b=3

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com