Haskell:创建字符串列表和<字符串和字符串列表>对的记录

发布于 2024-12-10 18:39:47 字数 433 浏览 0 评论 0原文

如何在 Haskell 中创建字符串列表和一对的记录

我尝试了以下方法

对于创建字符串列表的记录

data testList = test [string]
    deriving (Show, Eq)

当我运行它时,它给出了以下错误

不是数据构造函数:`test'

用于创建一对记录

data testList = test (String,[string])
    deriving (Show, Eq)

它也会给出相同的错误

不是数据构造函数:`test'

任何人都可以向我解释问题和解决方案。

How to create a record of list of string and, pair of in Haskell

I tried the following

For creating a record of list of string

data testList = test [string]
    deriving (Show, Eq)

When I run it, it gives me the following error

Not a data constructor: `test'

For creating a record of pair of

data testList = test (String,[string])
    deriving (Show, Eq)

It also gives the same error

Not a data constructor: `test'

can anyone explain me the problem and solution for it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浅忆 2024-12-17 18:39:48

数据类型的首字母必须是大写字母。
wikipedia/haskell/type 声明

The first letter of data types must be a capital letter.
wikipedia/haskell/type declarations

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文