UInt16.Parse(String)方法用於將數字的字符串表示形式轉換為其等效的16位無符號整數。
用法:
public static ushort Parse (string str);
在這裏,str是一個包含要轉換的數字的字符串。 str的格式為[可選空白] [可選符號]數字[可選空白]。該符號可以是正號或負號。但是負號隻能與零一起使用,否則它將引發OverflowException。
返回值:它是一個16位無符號整數,等效於str中包含的數字。
異常:
- ArgumentNullException:如果str為null。
- FormatException:如果str的格式不正確。
- OverflowException:如果str表示一個小於MinValue或大於MaxValue的數字。
以下示例程序旨在說明上述方法的使用:
示例1:
// C# program to demonstrate
// UInt16.Parse(String) Method
using System;
class GFG {
// Main Method
public static void Main()
{
// passing different values
// to the method to check
checkParse("65535");
checkParse("15,784");
checkParse("-4589");
checkParse(" 785");
}
// Defining checkParse method
public static void checkParse(string input)
{
try {
// declaring UInt16 variable
ushort val;
// getting parsed value
val = UInt16.Parse(input);
Console.WriteLine("'{0}' parsed as {1}", input, val);
}
catch (OverflowException) {
Console.WriteLine("Can't Parsed '{0}'", input);
}
catch (FormatException) {
Console.WriteLine("Can't Parsed '{0}'", input);
}
}
}
輸出:
'65535' parsed as 65535 Can't Parsed '15,784' Can't Parsed '-4589' ' 785' parsed as 785
示例2:對於ArgumentNullException
// C# program to demonstrate
// UInt16.Parse(String) Method
// for ArgumentNullException
using System;
class GFG {
// Main Method
public static void Main()
{
try {
// passing null value as a input
checkParse(null);
}
catch (ArgumentNullException e) {
Console.Write("Exception Thrown: ");
Console.Write("{0}", e.GetType(), e.Message);
}
catch (FormatException e) {
Console.Write("Exception Thrown: ");
Console.Write("{0}", e.GetType(), e.Message);
}
}
// Defining checkparse method
public static void checkParse(string input)
{
// declaring UInt16 variable
ushort val;
// getting parsed value
val = UInt16.Parse(input);
Console.WriteLine("'{0}' parsed as {1}", input, val);
}
}
輸出:
Exception Thrown: System.ArgumentNullException
參考:
相關用法
- C# MathF.Tan()用法及代碼示例
- C# MathF.Abs()用法及代碼示例
- C# MathF.Max()用法及代碼示例
- C# MathF.Log()用法及代碼示例
- C# MathF.Min()用法及代碼示例
- C# MathF.Cos()用法及代碼示例
- C# MathF.Exp()用法及代碼示例
- C# MathF.Pow()用法及代碼示例
- C# MathF.Sin()用法及代碼示例
- C# UInt16.GetHashCode用法及代碼示例
- C# Single.IsNegative()用法及代碼示例
- C# Single.IsFinite()用法及代碼示例
- C# Single.CompareTo()用法及代碼示例
注:本文由純淨天空篩選整理自Kirti_Mangal大神的英文原創作品 UInt16.Parse(String) Method in C# with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。