0
Please help!! I need * <-- Answers
Drag and drop from the options below to define a generic class, which has a member method that returns the value of x. ___Temp ___{ T x; public____ Func() { ______ x; } } <x> <T> T class static x return
3 Respuestas
+ 1
class Temp<T> {
T x;
public T Func() {
return x;
}
}
- 1
You should post a question so we can "answer".
Try elaborating more
- 1
I had forgotten!