Created
June 22, 2013 14:49
-
-
Save MaikKlein/5841146 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| trait Visitor<T>{ | |
| fn visit(&self, t: T); | |
| } | |
| struct PrintVisitor; | |
| impl PrintVisitor { | |
| fn print(&self, s: ~str){ | |
| println(s); | |
| } | |
| } | |
| impl Visitor<~str> for PrintVisitor { | |
| fn visit(&self, s: ~str){ | |
| println(s+" World"); | |
| } | |
| } | |
| struct SomeObject; | |
| impl SomeObject { | |
| fn do_sth<'r>(&self, v: &'r Visitor<~str>, s: ~str){ | |
| v.visit(s); | |
| } | |
| } | |
| fn main(){ | |
| let v = &PrintVisitor; | |
| let o = SomeObject; | |
| o.do_sth(v as &Visitor<~str>, ~"Hello"); // do I really have to cast? | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment