11

我创建了一个用于处理 C# 中的单元转换的类。它不起作用,因为它应该只返回字符串。

这是课程:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;

namespace RestaurantManagementSystem
{
    class unitHandler
    {
        public enum Units
        {
            Grams = 1,
            KiloGrams = 0.001,
            Milligram = 1000,
            Pounds = 0.00220462,
            Ounces = 0.035274,
            Tonnes = 0.000001,

            Litres = 1,
            Millilitres = 1000,
            Cups = 4.22675,
            FluidOunces = 33.814,
            TeaSpoon = 202.884,
            TableSpoon = 67.628,
            CubicFeet = 0.0353147,
            CubicInch = 61.0237,
            CubicCentimetres = 0.0001,
            CubicMetres = 0.001

        }

        public double Convert_Value(Units from, Units to, double quantity)
        {
            double converted_quantity = 0;

            double fromValue = quantity * Convert.ToDouble(from.ToString());

            converted_quantity = fromValue * Convert.ToDouble(to.ToString());

            return converted_quantity;
        }
    }
}

我会以某种方式希望枚举类型包含每个单位的转换因子的双精度值,然后将它们用于转换并返回转换后的数量。

4

6 回答 6

20

不,枚举的默认类型是intor long,你不能使用小数。您可以使用结构或类而不是枚举进行双精度

public struct Units
{
        public const double Grams = 1;
        public const double KiloGrams = 0.001;
        public const double Milligram = 1000;
        public const double Pounds = 0.00220462;
        public const double Ounces = 0.035274;
        public const double Tonnes = 0.000001;
        // Add Remaining units / values
}

并像使用它一样

double d = Units.KiloGrams;
于 2013-02-07T05:23:33.140 回答
4

没有:

我试着把它交给 Visual Studio:

public enum Test : double
{
    Hello, World
}

它说:

类型 byte、sbyte、short、ushort、int、uint、long 或 ulong 预期

于 2013-02-07T05:23:27.750 回答
3

您不能将浮点数/双精度数与枚举一起使用。您可能必须定义常量。

public const double KiloGrams = 0.001;
于 2013-02-07T05:24:23.160 回答
3

对不起,做不到。枚举是严格的整数/字节。真的,他们应该是他们自己的类型。

你可以试试:

enum Units() {
    Grams ,
    KiloGrams ,
    Milligram 
}

public function GetUnitsFloatValue(Units unit) : float
{
    switch (unit)
    {
        case Units.Grams :
            return 1;
        case Units.KiloGrams :
            return 0.001;
        case Units.MilliGrams:
            return 1000;           
    }

    //unhandled unit?
    return 0;
}
于 2013-02-07T05:52:39.727 回答
1

您可以事先使用该方法将 a 转换double为 a并将它们硬编码为具有支持类型的枚举。然后,您必须将枚举值转换回.longBitConverter.DoubleToInt64Bits(double)longdouble

这可能比它的价值更麻烦。

于 2013-02-07T05:26:47.853 回答
0

您不能将枚举与双打一起使用。您只能将其与intand一起使用long

于 2013-02-07T05:23:06.703 回答