我想知道如何修改列表中的对象。我试过跟随,但它给出了一个错误。
when
Category( $bookList : books )
UserProfile( profile == UserProfile.STUDENT )
$book : Book( student == true )
$category : Category( books contains $group )
then
modify( $category.books[$book] ) { setEligible(true) }
end
Book.setEligible 是我需要调用的方法。但我需要为 Cagegory.books 列表中的选定对象调用它。我究竟做错了什么 ?谁能帮忙?
谢谢 !