Naive question about Java syntax. What does
<T> T accept(ObjectVisitorEx<T> visitor);
mean? What would be the C# equivalent?
|
|
Naive question about Java syntax. What does
mean? What would be the C# equivalent?
|
||||||||
|
|
|
The C# equivalent would be more or less the same. If the visitor were an interface it would be
|
||
|
|
|
In C# it could be:
|
||||||||||||
|
|
|
This is used for passing types as parameters. C# syntax is the same (<Type>). Suggest googling for term 'generics' as this is the term you're looking for. |
||
|
|
|
|
Here's a good comparison between Java and C# generics. |
||
|
|
|
see Java: http://java.sun.com/j2se/1.5.0/docs/guide/language/generics.html
|
|||
|
|