I remember hearing that Visitor is not one of the patterns covered in
SCEA Exam 1, and I don't remember seeing it in the exam, so you probably don't need to worry about it.
I also think the Visitor pattern is confusing, by the way, and I'm not if I would ever use it, because it makes the Visitor itself difficult to maintain (though it makes the Subject easier to maintain). The Visitor pattern allows you to add operations on classes without modifying those classes. You do this by adding "accept" methods in your classes, which perform a callback on your Visitor classes.
This still sounds confusing. I don't know if I really understand it myself.
