gpt4 book ai didi

c# - c#中的return (Object) null是什么意思?

转载 作者:行者123 更新时间:2023-11-30 13:12:10 25 4
gpt4 key购买 nike

C# 新手,我正在查看一些具有以下返回语句的代码:

return (Object) null

这在 C# 中是什么意思,将返回什么?

谢谢

最佳答案

我能想到的唯一需要这样做的地方是编译器无法推断返回类型的匿名方法。

例如,

var boxedThings = strings.Select(s =>
{
int i;
if (int.TryParse(s, out i))
return i;
double d;
if (double.TryParse(s, out d))
return d;
return (object)null;
});

没有 (object) 就无法编译。

关于c# - c#中的return (Object) null是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13027231/

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