vote up 2 vote down star

Naive question about Java syntax. What does

<T> T accept(ObjectVisitorEx<T> visitor);

mean? What would be the C# equivalent?

flag

Isn't that an 'O' ( oh ) rather and a '0' ( zero ) ? – Oscar Reyes Jun 23 at 21:28
It's an 'O" (oh), but it does look like a zero. – Dervin Thunk Jun 23 at 21:30
O probably isn't the best identifier... – Tom Hawtin - tackline Jun 23 at 21:52
Would "T" be better? – Dervin Thunk Jun 23 at 22:00

5 Answers

vote up 1 vote down check

The C# equivalent would be more or less the same. If the visitor were an interface it would be

O Accept(IObjectVisitorEx<O> visitor);
link|flag
Wouldn't you need to declare O somewhere? – Tom Hawtin - tackline Jun 23 at 21:47
vote up 2 vote down

In C# it could be:

O Accept<O>(ObjectVisitorEx<O> visitor);
link|flag
what's the difference between adding Accept<O> and just Accept as the accepted answer? – Dervin Thunk Jun 23 at 21:35
1  
With @AgileJon's answer the class is generic. This way only the method is generic... – bruno conde Jun 23 at 21:37
The original question does indeed ask about a generic method. – Tom Hawtin - tackline Jun 23 at 21:50
(The difference would be more obvious if the two versions were put together (for instance by accepting this answer).) – Tom Hawtin - tackline Jun 23 at 21:51
Can I accept two answers? – Dervin Thunk Jun 23 at 22:01
vote up 1 vote down

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.

link|flag
vote up 1 vote down

Here's a good comparison between Java and C# generics.

link|flag
nice link. Thanks. – Dervin Thunk Jun 23 at 21:33
vote up 0 vote down

see Java: http://java.sun.com/j2se/1.5.0/docs/guide/language/generics.html
and C#: http://msdn.microsoft.com/en-us/library/ms379564(VS.80).aspx
A similar C# method could be

public T Foo<T>(Queue<T> v) // Queue<T> chosen for simplicity
{
  return v.Dequeue();
}

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.