C#:Array.Sort方法为double?

时间:2012-04-22 09:22:18

标签: c# arrays sorting

我有一个数组(double):ox_test,包含已知数量的元素。

当我编码:

Array.Sort(ox_test);

然后,只是看它是否排序的数组:

for (int y = 1; y <= ox_test.Length; y++)
     MessageBox.Show(".x: " + ox_test[y]);

..我得到... 0,0,0,0,0(如果元素的数量是5)。请帮忙,谢谢!

所以我修改了两个for循环:

for (int y = 0; y < ox_test.Length; y++)
    MessageBox.Show(".x: " + ox_test[y]);
    // HERE  i get the values not sorted but != 0

Array.Sort(ox_test);

for (int y = 0; y < ox_test.Length; y++)
    MessageBox.Show(".x s: " + ox_test[y]);
    // HERE i get only 0 values

3 个答案:

答案 0 :(得分:4)

// sort double array
double[] doubleArray = new double[5] { 8.1, 10.2, 2.5, 6.7, 3.3 };
Array.Sort(doubleArray);
// write array
foreach (double d in doubleArray) Console.Write(d + " ");  // output: 2.5 3.3 6.7 8.1 10.2

答案 1 :(得分:1)

你应该从0而不是1开始。

for (int y = 0; y < ox_test.Length; y++)
    MessageBox.Show(".x: " + ox_test[y]);

另外,请确保ox_test数组的初始化。

答案 2 :(得分:0)

尝试使用此代码:

Array.Sort(ox_test);

foreach (double i in ox_test)
{
    Console.Write(i + " ");
}