我正在做作业并且有错误
我必须做一个关于现在描述的数据类型的函数
data RGBdata= RGB Int Int Int
data PBMfile= PBM Int Int [[RGBdata]]
而他的表演功能
instance Show RGBdata where
show (RGB r g b) = (show r)++" "++(show g)++" "++(show b)
instance Show PBMfile where
show (PBM width height l) = "P3\n"++(show width)++" "++(show height)++"\n255\n"++(foldr (++) "" (map myshow l))
myshow [] = "\n"
myshow (h:t) = (show h)++" "++(myshow t)
以及他的加载和应用功能
cargarPBM name = readFile name >>= return . rLines . lines
rLines (_:x:_:xs)= (\[a,b]->(PBM (read a) (read b) (rLines' (read a) (concat $map words xs)))) $ words x
rLines' _ []= []
rLines' a x= (rLine (take (a*3) x): rLines' a (drop (a*3) x))
rLine []= []
rLine (r:g:b:xs)= ((RGB (read r) (read g) (read b)):rLine xs)
aplicar funcion origen destino= cargarPBM origen >>= writeFile destino . show . funcion
例如,当我尝试执行一项功能时
negative :: PBMfile -> [Int]
negative PBM x y z = [1,2,3]
拥抱错误
ERROR file:.\haha.hs:32 - Constructor "PBM" must have exactly 3 arguments in pattern
但是 PBM xyz 不是 3 个参数吗?我究竟做错了什么?