我想创建一个aminator类。但它无法修改其他类中的字段值。
这是我的简化动画师课程:
public class PointMover
{
Point point;
public void Set(ref Point p)
{
point = p;
}
public void Move(int dX)
{
point.X += dX; // The point.X is modified here.
}
}
和我的主要课程:
public partial class Form1 : Form
{
PointMover pointMover = new PointMover();
Point point = new Point(0, 0);
private void Form1_Load(object sender, EventArgs e)
{
pointMover.Set(ref point);
pointMover.Move(10); // But point.X is NOT modified here.
this.Close();
}
}
这是我的问题。有没有人知道如何解决它?我会很感激的。
答案 0 :(得分:7)
Point
是一个结构(即值类型)。您通过引用传递它,但是然后通过将其分配给PointMover
字段,在point
的构造函数中创建点实例的副本:
public void Set(ref Point p)
{
point = p; // here you create copy of passed point
}
因此point
的修改不会影响p
(因为它们代表不同的结构实例)。
注意:如果Point
是引用类型(即类),则此赋值将复制引用,并且两个变量都将引用堆中的同一实例。
为了解决此问题,您需要修改通过引用传递的点而不创建副本。 E.g。
public static void Move(ref Point point, int dX)
{
point.X += dX;
}
用法:
PointMover.Move(ref point, 20);
或者您只需使用Point.Offset(int dx, int dy)
方法。