新列表数据类型
如何在 ML 中定义新的数据类型,让我们假设 newList,这样它可以包含元素 'a (int、real 等)的列表、嵌套列表,例如: 如果我的类型'a是int,值可能是:[1],[1,[4]],[1,[5],[[5]]]等。 预先感谢您的任何帮助
已编辑 抱歉,示例中没有 1,不同的 int 列表,我删除了它
how can I define new data type in ML, let's assume newList, such that it can consist lists of element 'a (int, real, etc.), nested lists, for example:
if my type 'a is int, values may be: [1], [1,[4]], [1,[5],[[5]]], etc.
thanks in advance for any help
EDITED
sorry without 1 in the example, different lists of int, I deleted it
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你不能。列表中的所有元素必须属于同一类型。在您的示例中,某些元素是
int
类型,有些是int list
类型。您可以创建类似这棵树的东西,但语法不太好用:-)
You cannot. All elements in a list must be of the same type. In your example, some of the elements are of
int
type, and some areint list
.You can create something like this tree, but the syntax is not so nice to use :-)
你的例子是:
Your examples would be: