這乍一聽是個很簡單的事,但突然搞起來還真有點無從下手的感覺。
首先當然是通過GetType()方法反射獲取其類型信息,然後對其進行分析,但是類型信息Type中並沒有簡單地給出這麼一個屬性進行判斷。
老外給出的方法是:
public static bool IsNumeric(this Type dataType) { if (dataType == null) throw new ArgumentNullException("dataType"); return (dataType == typeof(int) || dataType == typeof(double) || dataType == typeof(long) || dataType == typeof(short) || dataType == typeof(float) || dataType == typeof(Int16) || dataType == typeof(Int32) || dataType == typeof(Int64) || dataType == typeof(uint) || dataType == typeof(UInt16) || dataType == typeof(UInt32) || dataType == typeof(UInt64) || dataType == typeof(sbyte) || dataType == typeof(Single) ); }
我勒個去。。。他是想窮舉比對所有已知數值類型。。。。這麼做應該是可以,就是性能差點並且不雅吧。
而且~他好像還忘了Decimal。。。
我研究了一下這些數值類型,它們貌似都是結構而非類,而且都有共同的接口:
IFormattable, IComparable, IConvertible
其中IFormattable接口是數值類型有別於其它幾個基礎類型的接口。
這樣就非常好辦了,代碼如下:
public static bool IsNumericType(this Type o) { return !o.IsClass && !o.IsInterface && o.GetInterfaces().Any(q => q == typeof(IFormattable)); }
另外除了基本類型之外還有可空類型Nullable<T>,就是常用的例如double?這種,對於泛型的類型的匹配我不知該怎麼做才好,趕時間就沒深究,用了個偷懶的方法實現了:
public static bool IsNullableNumericType(this Type o) { if (!o.Name.StartsWith("Nullable")) return false; return o.GetGenericArguments()[0].IsNumericType(); }
看吧,只是判斷一下類型名稱是不是以“Nullable”開始,如果是的話再對其第一個泛型參數類型進行上面的判斷,這樣肯定不是100%靠譜的,希望有識之士能夠完善一下這個方法並分享出來哈。
//判斷數字
public bool IsNum(string Str)
{
bool bl = false;
string Rx = @"^[1-9]\d*$";
if (Regex.IsMatch(Str, Rx))
{
bl = true;
}
else
{
bl = false;
}
return bl;
}
謝謝
a.GetType()獲取當前變量的類型對象
typeof(String)獲取的是String類型的類型對象
你可以把a.GetType() == typeof(String)比較,可以獲取a是否是String類型
當然有更簡單的方法 a is String 獲取一個boolean值表示a是否是String類型或者可以隱式向上轉型成為String類型的類型(當然String是不可能有子類的,你自己寫的繼承類可以判斷)