如何从一个函数返回2个值

时间:2013-01-24 07:51:15

标签: c#

我有一个计算两个位置的函数,我希望得到它们两个,有没有办法从同一个函数返回两个值,而不是把它们变成一个数组。我认为有一些争论或类似的东西... tnx。在这里我的代码:

public static int Location(int p_1, int p_2, int p_3, int p_4)
{
  int  XLocation = p_2 - p_1;
  int YLocation = p_4-p_3;
  return XLocation,YLocation;
}

public void Print()
{
}

10 个答案:

答案 0 :(得分:31)

有多种方法:

1)使用:

public KeyValuePair<int, int> Location(int p_1, int p_2, int p_3, int p_4)
{                 
    return new KeyValuePair<int,int>(p_2 - p_1, p_4-p_3);
}

static Tuple<int, int> Location(int p_1, int p_2, int p_3, int p_4)
{
    return new Tuple<int, int>(p_2 - p_1, p_4-p_3);
}

2)使用自定义类Point

public class Point
{
    public int XLocation { get; set; }
    public int YLocation { get; set; }
}

public static Point Location(int p_1, int p_2, int p_3, int p_4) 
{    
     return new Point 
     {
        XLocation  = p_2 - p_1;
        YLocation = p_4 - p_3;
     }      
 }

3)使用out关键字:

   public static int Location(int p_1, int p_2, int p_3, int p_4, out int XLocation, out int YLocation)
   {
        XLocation = p_2 - p_1;    
        YLocation = p_4 - p_3;
   }

以下是这些方法的比较:multiple-return-values

最快的方法(最佳表现)是:

public KeyValuePair<int, int> Location(int p_1, int p_2, int p_3, int p_4)
{                 
    return new KeyValuePair<int,int>(p_2 - p_1, p_4-p_3);
}

答案 1 :(得分:13)

使用结构或类:

public struct Coordinates
{
    public readonly int x;
    public readonly int y;

    public Coordinates (int _x, int _y) 
    {
        x = _x;
        y = _y;
    }
}

public static Coordinates Location(int p_1, int p_2, int p_3, int p_4) 
{
    return new Coordinates(p_2 - p_1, p_4 - p_3);
}

我发现它比使用out关键字更漂亮。

答案 2 :(得分:6)

您不能以这种方式返回2个值。但您可以将变量作为输出变量传递,如下所示:

  public static void Location(int p_1, int p_2, int p_3, int p_4, out int XLocation, out int YLocation)
{
    XLocation = p_2 - p_1;

    YLocation = p_4-p_3;
}

然后你只需要将目标变量传递给方法:

int Xlocation, YLocation;
Location(int p_1, int p_2, int p_3, int p_4, out int XLocation, out int YLocation);

它将用计算值填充它们。

答案 3 :(得分:3)

操作员'返回'不可能返回两个值。 您可以在'struct'中使用以下代码:

public static Position Location(int p_1, int p_2, int p_3, int p_4)
{

Position location;
location.xLocation = p_2 - p_1;
location.yLocation =p_4-p_3;;

return location;
}

public struct Position
{
public int xLocation;
public int yLocation;
}

答案 4 :(得分:3)

从C#7.0开始,你可以像这样使用元组:

(string, string) LookupName(long id) // tuple return type
{
    ... // retrieve first, middle and last from data storage
    return (first, last); // tuple literal
}

var names = LookupName(id);
WriteLine($"found {names.Item1} {names.Item2}.");
  

可以找到更多信息here

答案 5 :(得分:2)

您可以使用out,Coordinate结构或元组。

有一个元组:

public Tuple<int, int> GetLocation()
{
     return new Tuple<int,int>(1,2);
}

答案 6 :(得分:2)

如果您使用的是Windows表单,则可以使用Point struct;

public static Point Location(Point p1, Point p2)
{
    return new Point(p2.X - p1.X, p2.Y - p1.Y);
}   

答案 7 :(得分:1)

如果方法不是公共合同的一部分,我更喜欢使用tuples

private Tuple<int, string> Foo()
{
  // ...
}

答案 8 :(得分:1)

您可以使用Tuple<T1, T2>或使用参数。

答案 9 :(得分:0)

使用数组列表

public ArrayList Location(int p_1, int p_2, int p_3, int p_4)
{
 ArrayList ar = new ArrayList();
 ar.AddRange(new string[] { "", "" });  
 int  XLocation = p_2 - p_1;
 int YLocation = p_4-p_3;
 ar[0] = XLocation.ToString(); 
 ar[1] = YLocation.ToString(); 
 return ar;
 }