当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# Convert.ToDouble(String, IFormatProvider)用法及代码示例


此方法用于使用指定的区域性特定格式信息将数字的指定字符串表示形式转换为等效的双精度浮点数。

用法:

public static double ToDouble (string value, IFormatProvider provider);



参数:

  • value:它是一个包含要转换的数字的字符串。
  • provider:它是提供区域性特定格式信息的对象。

返回值:此方法返回一个双精度浮点数,它等于value中的数字,如果value为null,则返回0(零)。

异常:

  • FormatException:如果该值不是有效格式的数字。
  • OverflowException:如果该值表示一个小于MinValue或大于MaxValue的数字。

以下示例程序旨在说明Convert.ToDouble(String,IFormatProvider)方法的用法:

范例1:

// C# program to demonstrate the 
// Convert.ToDouble() Method 
using System; 
using System.Globalization; 
  
class GFG { 
  
// Main Method 
public static void Main() 
{ 
    try { 
  
        // Create a NumberFormatInfo object  
        // and set some of its properties. 
        NumberFormatInfo provider = new NumberFormatInfo(); 
        provider.NumberDecimalSeparator = ", "; 
        provider.NumberGroupSeparator = "."; 
        provider.NumberGroupSizes = new int[] { 3 }; 
  
        // declaring and initializing String array 
        string[] values = {"123456789", "12345.6789", 
                                      "12345, 6789"}; 
  
        // calling get() Method 
        Console.Write("Converted decimal value "
                         + "of specified strings:"); 
  
        for (int j = 0; j < values.Length; j++)  
        { 
            get(values[j], provider); 
        } 
    } 
  
    catch (FormatException e) 
    { 
  
        Console.WriteLine("\n"); 
        Console.Write("Exception Thrown:"); 
        Console.Write("{0}", e.GetType(), e.Message); 
    } 
  
    catch (OverflowException e) 
    { 
  
        Console.WriteLine("\n"); 
        Console.Write("Exception Thrown:"); 
        Console.Write("{0}", e.GetType(), e.Message); 
    } 
} 
  
// Defining get() method 
public static void get(string s, 
      NumberFormatInfo provider) 
{ 
  
    // converting string to specified char 
    double val = Convert.ToDouble(s, provider); 
  
    // display the converted char value 
    Console.Write(" {0}, ", val); 
} 
}
输出:
Converted decimal value of specified strings: 123456789,  123456789,  12345.6789,

范例2:对于FormatException

// C# program to demonstrate the 
// Convert.ToDouble() Method 
using System; 
using System.Globalization; 
  
class GFG { 
  
// Main Method 
public static void Main() 
{ 
    try { 
  
        // Create a NumberFormatInfo object  
        // and set some of its properties. 
        NumberFormatInfo provider = new NumberFormatInfo(); 
        provider.NumberDecimalSeparator = ", "; 
        provider.NumberGroupSeparator = "."; 
        provider.NumberGroupSizes = new int[] { 3 }; 
  
        // declaring and initializing String array 
        string[] values = {"123456789", "12345.6789", 
                                      "12345, 6789"}; 
  
        // calling get() Method 
        Console.Write("Converted double value"
                 + " of specified strings:"); 
  
        for (int j = 0; j < values.Length; j++) 
        { 
  
            get(values[j], provider); 
        } 
  
        Console.WriteLine("\n"); 
        string s = "123 456, 789"; 
  
        Console.WriteLine("format of s is invalid "); 
  
        // converting string to specified char 
        double val = Convert.ToDouble(s, provider); 
  
        // display the converted char value 
        Console.Write(" {0}, ", val); 
    } 
  
    catch (FormatException e)  
    { 
  
        Console.Write("Exception Thrown:"); 
        Console.Write("{0}", e.GetType(), e.Message); 
    } 
      
    catch (OverflowException e)  
    { 
  
        Console.Write("Exception Thrown:"); 
        Console.Write("{0}", e.GetType(), e.Message); 
    } 
} 
  
// Defining get() method 
public static void get(string s, 
      NumberFormatInfo provider) 
{ 
  
    // converting string to specified char 
    double val = Convert.ToDouble(s, provider); 
  
    // display the converted char value 
    Console.Write(" {0}, ", val); 
} 
}
输出:
Converted double value of specified strings: 123456789,  123456789,  12345.6789, 

format of s is invalid 
Exception Thrown:System.FormatException

范例3:对于OverflowException

// C# program to demonstrate the 
// Convert.ToDouble() Method 
using System; 
using System.Globalization; 
  
class GFG { 
  
// Main Method 
public static void Main() 
{ 
    try { 
  
        // Create a NumberFormatInfo object 
        // and set some of its properties. 
        NumberFormatInfo provider = new NumberFormatInfo(); 
        provider.NumberDecimalSeparator = ", "; 
        provider.NumberGroupSeparator = "."; 
        provider.NumberGroupSizes = new int[] { 3 }; 
  
        // declaring and initializing String array 
        string[] values = { "123456789", "12345.6789", 
                                      "12345, 6789" }; 
  
        // calling get() Method 
        Console.Write("Converted decimal value "
                    + "of specified strings:"); 
  
        for (int j = 0; j < values.Length; j++) 
        { 
  
            get(values[j], provider); 
        } 
  
        Console.WriteLine("\n"); 
        string s = "-7922816251426433759354395033500000"; 
  
        Console.WriteLine("s is less than the MaxValue"); 
  
        // converting string to specified char 
        decimal val = Convert.ToDecimal(s, provider); 
  
        // display the converted char value 
        Console.Write(" {0}, ", val); 
    } 
      
    catch (FormatException e)  
    { 
        Console.Write("Exception Thrown:"); 
        Console.Write("{0}", e.GetType(), e.Message); 
    } 
      
    catch (OverflowException e)  
    { 
        Console.Write("Exception Thrown:"); 
        Console.Write("{0}", e.GetType(), e.Message); 
    } 
} 
  
// Defining get() method 
public static void get(string s, 
      NumberFormatInfo provider) 
{ 
  
    // converting string to specified char 
    double val = Convert.ToDouble(s, provider); 
  
    // display the converted char value 
    Console.Write(" {0}, ", val); 
} 
}
输出:
Converted decimal value of specified strings: 123456789,  123456789,  12345.6789, 

s is less than the MaxValue
Exception Thrown:System.OverflowException

参考:



相关用法


注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 C# | Convert.ToDouble(String, IFormatProvider) Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。