模式匹配失败



或者我只是瞎了眼?

非常简单的简单功能,抛出"模式匹配失败:get_rtg db"

type Movie       = (Title,Regisseur,MainActors,ReleaseDate,Genre,SalesPrice)
type Title       = String
type Regisseur   = String
type Actor       = String
type MainActors  = [Actor]
type ReleaseDate = Int
data Genre       = Thriller | Fantasy | ScienceFiction | Comedy deriving (Eq,Ord,Show)
type SalesPrice  = Int
type Database    = [Movie]

-- gets all entrys which have a Regisseur, who is in MainActors at the same time
get_rtg :: Database -> [(Regisseur,Title,Genre)]
get_rtg []                             = []
ger_rtg ((ti,reg,acts,rel,gen,sal):xs) = if (isInfixOf [reg] acts) then ([(reg,ti,gen)] ++ (get_rtg xs)) else (get_rtg xs)

我想这只是一个错字:ger_rtg最后一行声明了一个新功能,所以get_rtg现在无法在非 [] 情况下进行模式匹配。

另外,我会使用filter来执行此操作:

get_rtg = filter ((_,reg,acts,_,_,_) -> reg `elem` acts)

最新更新