4

下面我有一个我从网上搜索的方法来计算C#中Excel的percentrank函数。我做了一些修改以适应我的程序,但没有改变主要逻辑。

该程序编译并运行良好,没有任何错误(我知道)。然而,进一步检查我的代码,在我的主要中,我使用

        double result = percentRank( array, x); 

在哪里

x 是一个 int
数组是一个 List (int)

它的类型与指定要采用的 percentRank 方法不同,但它仍然运行良好。我的问题是为什么?

        private static double percentRank(List<int> array, double x)
        {
            //        Calculate the PERCENTRANK(array, x)
            //If X matches one of the values in the array, this function is
            //equivalent to the Excel formula =(RANK(x)-1)/(N-1) where N is the number of data points.
            //If X does not match one of the values, then the PERCENTRANK function interpolates.
            // http://www.pcreview.co.uk/forums/algorithm-computing-excel-percentrank-t946312.html


            array.Sort();

            double result = 0;
            bool foundX = false;

            for (int index = 0; index < array.Count; index++)
            {
                if (array[index] == x)
                {
                    result = ((double)index) / ((double)array.Count - 1);
                    foundX = true;
                    break;
                }
            }
            // calculate value using linear interpolation

            if (foundX == false)
            {
                double x1, x2, y1, y2;

                x1 = x2 = x;

                for (int i = 0; i < array.Count - 1; i++)
                {
                    if (array[i] < x && x < array[i + 1])
                    {
                        x1 = array[i];
                        x2 = array[i + 1];
                        foundX = true;
                        break;
                    }
                }

                if (foundX == true)
                {
                    y1 = percentRank(array, x1);
                    y2 = percentRank(array, x2);

                    result = (((x2 - x) * y1 + (x - x1) * y2)) / (x2 - x1);
                }
                else
                {
                    // use the smallest or largest value in the set which ever is closer to valueX

                    if (array[0] > x)
                    {
                        result = 0;
                    }
                    else
                    {
                        result = 1;
                    }
                }
            }

            return result;
        }

编辑:好的答案是隐式类型转换。我可以禁用它吗?我不喜欢它,因为它可能会产生一些我不知道的错误。

4

4 回答 4

11

我的问题是为什么?

您可以将整数分配给双精度值。C# 将隐式转换Int32Double.

你可以在这里看到这个:

double value = 3;

由于相同的隐式转换,这是允许的。如果没有这种转换,您将不得不输入:

double value = 3.0;

这在 C# 语言规范的“6.1.2 隐式数字转换”部分中指定

隐式数字转换是:

...

  • 从 int 到 long、float、double 或 decimal。
于 2012-09-27T17:46:21.837 回答
2

C# 编译器正在执行隐式强制转换操作。double 可以保存任何整数值。

于 2012-09-27T17:46:38.283 回答
1

有从到的implicit转换。intdouble

转换是隐式的,因为 double 可以保存 int 的值而不会丢失准确性。

explicit从 double 到 int 的转换,但没有implicit转换。原因是,如果你将一个 double 存储在一个 int 中,那么当它切断小数位时就会失去价值。

MSDN 有一篇关于转换的好文章:http: //msdn.microsoft.com/en-us/library/ms173105.aspx

于 2012-09-27T17:47:02.643 回答
0

Anint可以隐式转换为 a double。这就是这里发生的事情。

于 2012-09-27T17:47:05.800 回答