Hello!
Tell me, please, how can I pass into the template not only the type, but also a specific value, for example, an integer? For example, there is such code:
public class Sample <T, size> { private T[] arr = new T[size]; // =( ... }
How to pass a number through size?
Thank!