I'm using generics like this: public class MyList<T>. Is there any way to ensure that the class represented by T implements a certain static method?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
No, even without generics there is never a way to ensure a class implements a static method. You can, however, create a generic static method.
|
|||
|
Unfortunately not. As an alternative, consider whether the static methods of your class belongs in some sort of associated class like a builder:
It may be better to move the static to a separate class as a non-static method:
This means that you can dictate clients of your generic class can now be required to provide it:
|
|||||
|
|
T.myMethod()anyway, so what would be the point? – Kirk Woll Jan 29 '11 at 14:44MyList<T>in the first place. You would not be able to invoke those static methods from within your generic list -- you cannot do anything with static members via generic parameters. – Kirk Woll Jan 29 '11 at 14:50thisat all, it shouldn't be static (which took me once long to comprehend). There are in fact just few uses for static methods. – maaartinus Jan 29 '11 at 14:54