就我个人而言,我会选择 RecordWildCards 并收工。但这是另一种 hackish 但有趣的方法,它在某些情况下可能有用:抛开谨慎,使用动态类型来获得类型更改折叠!
{-# LANGUAGE DeriveDataTypeable #-}
import Data.Dynamic (dynApp, fromDynamic, toDyn)
import Data.List (foldl')
import Data.Typeable (Typeable)
-- Add the 'Typeable' instance to enable runtime type information.
data Zone = Zone
{ zId, zOwnerId, zPodsP0, zPodsP1, zPodsP2, zPodsP3 :: Int
} deriving (Show, Typeable)
mkZone :: [String] -> Maybe Zone
mkZone = fromDynamic . foldl' dynApp (toDyn Zone) . map (toDyn . readInt)
where
-- This type-specialised 'read' avoids an ambiguous type.
readInt :: String -> Int
readInt = read
这从Zone 构造函数开始,类型为:
Int -> Int -> Int -> Int -> Int -> Int -> Zone
然后将其连续应用于从输入读取的每个Int,更改其类型:
Int -> Int -> Int -> Int -> Int -> Zone
Int -> Int -> Int -> Int -> Zone
Int -> Int -> Int -> Zone
Int -> Int -> Zone
Int -> Zone
Zone
它有效:
> mkZone ["1", "2", "3", "4", "5", "6"]
Just (Zone {zId = 1, zOwnerId = 2, zPodsP0 = 3, zPodsP1 = 4, zPodsP2 = 5, zPodsP3 = 6})
如果你提供的参数太少,你会得到Nothing,因为运行时转换失败:
> mkZone ["1", "2", "3", "4", "5"]
Nothing
但是,如果您提供了太多 个参数,则会出现异常:
> mkZone ["1", "2", "3", "4", "5", "6", "7"]
*** Exception: Type error in dynamic application.
Can't apply function <<Zone>> to argument <<Int>>
使用dynApply 代替dynApp 很容易解决这个问题,它返回Maybe 而不是抛出。而且只要你在Maybe工作,你还不如使用Text.Read.readMaybe来处理解析错误:
{-# LANGUAGE DeriveDataTypeable #-}
import Control.Monad ((<=<))
import Data.Dynamic (Dynamic, dynApply, fromDynamic, toDyn)
import Data.List (foldl')
import Data.Typeable (Typeable)
import Text.Read (readMaybe)
data Zone = Zone { … } deriving (Show, Typeable)
mkZone :: [String] -> Maybe Zone
mkZone = fromDynamic <=< foldl' go (Just (toDyn Zone)) . map readInt
where
go :: Maybe Dynamic -> Maybe Int -> Maybe Dynamic
go mAcc mx = do
acc <- mAcc
x <- mx
dynApply acc $ toDyn x
readInt :: String -> Maybe Int
readInt = readMaybe
但实际上,可能不要这样做。