本文介绍了F# 前向类型声明的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在 F# 中偶然发现了这个问题.假设,我想声明两个相互引用的类型:
I stumbled across this problem in F#. Suppose, I want to declare two types that reference each other:
type firstType =
| T1 of secondType
//................
type secondType =
| T1 of firstType
//................
我该怎么做才能让编译器不产生错误?
How do I do that, so the compiler does not generate an error?
推荐答案
您使用和":
type firstType =
| T1 of secondType
and secondType =
| T1 of firstType
这篇关于F# 前向类型声明的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!