允許可空型別作為值型別函數的一般參數
考慮需要從 DbDataRecords 擷取可能為空值的值。嘗試使用可為空型別作為泛型參數最初會導致錯誤,指示可為空型別必須是參考型別。隨後,將約束變更為結構體會導致另一個錯誤,指出可為空類型必須是不可為空的。
要解決此問題,解決方案是將返回類型修改為 Nullable
static void Main(string[] args) { int? i = GetValueOrNull<int>(null, string.Empty); } public static Nullable<T> GetValueOrNull<T>(DbDataRecord reader, string columnName) where T : struct { object columnValue = reader[columnName]; if (!(columnValue is DBNull)) return (T)columnValue; return null; }
現在,可空型別可以用作處理值類型的函數的泛型參數,同時允許在涉及 DbDataRecords 的操作期間出現空值的可能性。
以上是可空類型如何用作處理 DbDataRecords 中潛在空值的值類型函數的通用參數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!