2010-03-18 44 views
0

轉換類型如何將字符串類型轉換爲詮釋如何元組

我有一個元組,我想將其轉換爲具有元組不同類型的

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

我得到這個錯誤Msg

Project> tupletotuple ("cha",4,3) 
ERROR - Cannot infer instance 
*** Instance : Num [Char] 
*** Expression : tupletotuple ("cha",4,3) 
+4

嘗試用'tupletotuple(「cha」,「4」,「3」)代替。 – kennytm

+0

非常感謝。 :) 愚蠢的我 – Nubkadiya

回答

2

您需要3個字符串的元組進行轉換。結果將是一個字符串和2個整數。