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

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

问题描述

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

F#不允许返回空值

我如何将值返回为元组或null?

推荐答案

不是F#不允许您返回null.

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

这是因为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#如何返回具有值的元组或null的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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