Hello everyone, how can I create my own Java list without using the List class library?

Please tell me, I will be grateful.

  • you can simply create an array - Gorets
  • look at a similar question about the stack in java. There is an answer with reference to the source. Actually, this is avp

1 answer 1

Write your own implementation of the java.util.List <T> interface

  • Hmmm, I understand, thank you. - Wengelm
  • if the ready interface does not fit, you can write your own - Mage