F# 如何返回具有元组或空值的值 [英] F# how to return have value a tuple or null

查看:13
本文介绍了F# 如何返回具有元组或空值的值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

    let retVal =
      if reader.Read() then
        (reader.GetString(0), getBytesData reader 1, reader.GetDateTime(2))
      else
        null

F# 不允许返回 null

F# don't allow null to returned

如何将值返回为元组或空值?

推荐答案

并不是 F# 不允许你返回 null.

It is not that F# does not allow you to return null.

这是因为 then part 和 else part 的类型不同.

It is because then part and else part have different types.

您可以使用选项类型.

let retVal =
  if reader.Read() then
    Some (reader.GetString(0), getBytesData reader 1, reader.GetDateTime(2))
  else
    None

当你使用 retVal 时,你使用了模式匹配:

when you use retVal, you use pattern matching:

match retVal with
| Some v -> ...
| None -> // null case

这篇关于F# 如何返回具有元组或空值的值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆