提问人: 提问时间:2/8/2020 最后编辑:Hamed Moghadasi 更新时间:2/8/2020 访问量:1445
在 c 中按值传递数组#
Passing array by value in c#
问:
据我了解,传入的默认类型或参数是按值传入的。因此,不需要任何声明。但是当我尝试运行以下代码时,我在 Main 中的矩阵正在被类方法中所做的操作修改。我确定问题出在构造函数中,当我刚刚评估时,正在分配的引用而不是值。因此,我关于如何避免这种情况的问题,我所发现的只是如何通过引用传递参数。同样,据我了解,按值传递参数不需要修饰符。我哪里错了?c#
A
dMatrixU
Factorize()
Decomposition
Decomposition
A
dMatrixU
A
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
using LinearEquations;
namespace Rextester
{
public class Program
{
public static void Main(string[] args)
{
double[,] A = new double[,]
{ { 1, 1, 1 } ,
{ 4, 3, -1 } ,
{ 3, 5, 3 } };
double[] B = new double[] {1,6,4};
Decomposition lu = new Decomposition(A,B);
lu.Factorize();
PrintMatrix(A,"A:");
PrintVector(B,"B:");
PrintMatrix(lu.L,"L:");
PrintMatrix(lu.U,"U:");
PrintVector(lu.D,"D:");
}
public static void PrintMatrix(double[,] M, String Title = "Matrix: ")
{
Console.WriteLine(Title);
for(int i = 0; i<M.GetLength(0); i++)
{
for(int j = 0; j<M.GetLength(1);j++)
{
Console.Write(M[i,j]+"\t");
}
Console.Write("\n");
}
Console.Write("\n");
}
public static void PrintVector(double[] V, String Title = "Vector: ",bool AsRow = true)
{
String str = (AsRow)? "\t" : "\n";
Console.WriteLine(Title);
for(int i = 0; i<V.GetLength(0); i++)
{
Console.Write(V[i]+str);
}
Console.WriteLine("\n");
}
}
}
namespace LinearEquations
{
public class Decomposition
{
// Fields
private double[,] dMatrixA; // Parameter in A*X=B
private double[] dVectorB; // Parameter in A*X=B
private double[] dVectorX; // Result wanted in A*X=B
private double[,] dMatrixU; // A splits into L and U
private double[,] dMatrixL; // L is used to calculate D in L*D=B
private double [] dVectorD; // D is used to calculate X in U*X=D
// Properties
public double[,] A
{
get { return dMatrixA; }
set { dMatrixA = value; }
}
public double[] B
{
get { return dVectorB; }
set { dVectorB = value; }
}
public double[] X
{
get { return dVectorX; }
set { dVectorX = value; }
}
public double[,] L
{
get { return dMatrixL; }
set { dMatrixL = value; }
}
public double[,] U
{
get { return dMatrixU; }
set { dMatrixU = value; }
}
public double[] D
{
get { return dVectorD; }
set { dVectorD = value; }
}
// Constructor
public Decomposition(double[,] A, double[] B)
{
dMatrixA = A;
dVectorB = B;
dVectorX = new double[B.Length];
dMatrixU = A;
dMatrixL = new double[A.GetLength(0),A.GetLength(1)];
dVectorD = new double[B.Length];
}
// Split A into L and U
public void Factorize()
{
// Iterate per each row
for(int i = 0; i<dMatrixU.GetLength(0); i++)
{
// For all the rows make element i equals 0
for(int j = i+1; j<dMatrixU.GetLength(0);j++)
{
// Factor that assures substraction makes 0
dMatrixL[1,1] = dMatrixU[j,i] / dMatrixU[i,i];
// Iterate per each column
for(int k = 0; k<dMatrixU.GetLength(1);k++)
{
dMatrixU[j,k] = dMatrixU[j,k] - dMatrixU[i,k]*dMatrixL[1,1];
}
}
}
}
}
}
答:
据我了解,在 c# 中传递的默认类型或参数是按值传递的。
不幸的是,它有点复杂,也有一些执行:
像您一样的引用类型通过制作引用的副本来上交。不幸的是,这意味着两者仍然在内存中引用相同的实例。因此,尽管有复制操作,但它是按引用调用的。Decomposition
对于值类型(如 or 及其别名),通常会进行复制。我不知道有什么情况没有,但我以前在这些事情上错了。所以它们是按值调用的。Int
double
最后,以及其他一些引用类型在设计上是不可变的。这样做的好处是,它们的行为有点像该领域的值类型。您上交了 Reference,但实例本身无法更改。代码只能在内存中创建具有不同值的新实例。因此,尽管交出了文字引用,但它的工作方式有点像按值调用。String
您的具体案例
数组是非常明确的引用类型。将它们交入一个没有副作用的功能,需要适当的克隆。如果是引用类型的数组,则克隆必须是深度的。
在您的例子中,您有值类型的数组。如果要避免按引用调用的副作用,则必须克隆这些数组。但是,由于 double 是一种值类型,因此这种克隆可能很浅。无需深度克隆。
与 Java 不同,没有专用的 Clone() 方法。我不确定为什么。但是,通常可以使用一个集合通过构造函数初始化另一个集合。或者它们甚至具有像蝙蝠侠指出的那样的功能。Array.Copy()
评论
Array.Copy