开发者

How to Convert Type in Tuples

how to convert a String type to a Int

i have a tuple and i want to convert it to a tuple which has different types

tupletotuple :: (String,String,String) ->(String,Int,Int)
tupletotuple (a,b,c) = (a,read(b),read(c))

i get this Error Msg

Project> tupletotuple ("cha",4,3)
ERRO开发者_StackOverflow中文版R - Cannot infer instance
*** Instance   : Num [Char]
*** Expression : tupletotuple ("cha",4,3)


You need a tuple of 3 strings to convert. The result will be a string and 2 ints.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜