2

我想知道是否有任何方法可以在方法之间进行数学加法?代码如下。

From Main:(我需要计算但我不能在方法之间进行计算)

Ball.setPositionY = Ball.setPositionY + Ball.setSpeedY;

从一个类:

public class Ball
    {
    public int speedX { get; set; }
    public int speedY { get; set; }
    public int positionX { get; set; }
    public int positionY { get; set; }

    public Ball(int speedX, int speedY, int positionX, int positionY)
    {
        this.speedX = speedX;
        this.speedY = speedY;
        this.positionX = positionX;
        this.positionY = positionY;
    }

    public void setSpeedX(int newSpeedX)
    {
        speedX = newSpeedX;
    }

    public void setSpeedY(int newSpeedY)
    {
        speedY = newSpeedY;
    }

    public void setPositionX(int newPositionX)
    {
        positionX = newPositionX;
    }

    public void setPositionY(int newPositionY)
    {
        positionY = newPositionY;
    }
}
4

7 回答 7

7

你应该这样做:

public class Ball
{
    public int SpeedX { get; set; }
    public int SpeedY { get; set; }
    public int PositionX { get; set; }
    public int PositionY { get; set; }

    public Ball(int speedX, int speedY, int positionX, int positionY)
    {
        this.SpeedX = speedX;
        this.SpeedY = speedY;
        this.PositionX = positionX;
        this.PositionY = positionY;
    }
}

public class Program
{
    public static void Main(string[] args)
    {
        Ball ball1 = new Ball(1,1,1,1);
        Ball ball2 = new Ball(2,2,2,2);
        Ball ball3 = new Ball(3,3,3,3);
        ball3.SpeedX = ball1.SpeedX + ball2.SpeedX;
    }
}
于 2013-05-28T08:18:25.723 回答
0

如何让 set 方法也返回设置的值,或者添加一个 get 方法来为您提供相同的值。但是......既然你想要那个,你为什么不直接使用对象的公共属性呢?

所以,你的方法可能看起来像

public int setPositionX(int newPositionX)
{
    positionX = newPositionX;
    return newPositionX;
}

但是,由于您现在正在创建自己的 getter 和 setter,并且您已经拥有它们。使用公共属性,一切都应该没问题。

于 2013-05-28T08:14:38.333 回答
0

分配值后,您只需返回值。它会解决你的问题。如果你想使用方法。

例如。

public int setSpeedX(int newSpeedX)
{
  speedX = newSpeedX;
  return speedX;
}
于 2013-05-28T08:15:15.663 回答
0

这就是属性的用途;您应该为此使用属性。

如果您的意思是函数式编程意义上的添加,我无法理解您的示例。

于 2013-05-28T08:15:20.850 回答
0

由于您的所有方法都有void返回类型,因此无法“添加”它们。如果您想这样做,请将您的方法的返回类型更改为int.

编辑

您可以“添加”具有int返回类型的方法,但结果不能是方法。

样本:

public int setPositionY(int newPositionY)
{
    positionY = newPositionY;
    return positionY;
}

public int setSpeedY(int newSpeedY)
{
    speedY = newSpeedY;
    return speedY;
}

positionY = setPositionY(/*new position*/) + setSpeedY(/*new speed*/);
于 2013-05-28T08:16:14.077 回答
0

您的方法必须返回值才能添加它们,但公共属性可以满足您的需求。Ball.positionY = Ball.positionY + Ball.SpeedY;

于 2013-05-28T08:18:32.897 回答
0

试试下面的代码...

namespace Foo
{
    class Program
    {
    static void Main(string[] args)
    {
        Ball b = new Ball(1,2,3,4);

        //b.setPositionY() = b.setSpeedY() + b.setSpeedY();
       b.setPositionY(b.setSpeedX() + b.setSpeedY());            

    }
}

public class Ball
{
    public int speedX { get; set; }
    public int speedY { get; set; }
    public int positionX { get; set; }
    public int positionY { get; set; }

    public Ball(int speedX, int speedY, int positionX, int positionY)
    {
        this.speedX = speedX;
        this.speedY = speedY;
        this.positionX = positionX;
        this.positionY = positionY;
    }

    public int setSpeedX()
    {
        //speedX = newSpeedX;
        return 10;
    }

    public int setSpeedY()
    {
        //speedY = newSpeedY;
        return 20;
    }

    public int setPositionX()
    {
        //positionX = newPositionX;
        return 1;
    }

    public void setPositionY(int newPositionY)
    {
        positionY = newPositionY;

    }
}
于 2013-05-28T08:27:54.593 回答