gpt4 book ai didi

c# - Nullable DateTime 工作是否正确?

转载 作者:太空狗 更新时间:2023-10-29 18:12:41 25 4
gpt4 key购买 nike

请检查以下代码

DateTime? tmp = new DateTime();
tmp = null;
return tmp.ToString();

它返回 String.Empty

是否正确?

可能在第二行代码中引发异常会更好

最佳答案

是的,这是正确的。来自documentation

The text representation of the value of the current Nullable<T> object if the HasValue property is true, or an empty string ("") if the HasValue property is false.

另请注意 Nullable<T>.EqualsNullable<T>.GetHashCode不要在这种情况下抛出,但在那个情况下抛出 Nullable<T>.GetType 抛出。这是因为 Object.Equals , Object.GetHashCodeObject.ToStringNullable<T> 覆盖但是那个Object.GetType不是(因为它不能是因为它没有标记为 virtual )。

关于c# - Nullable DateTime 工作是否正确?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4547112/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com