What does the syntax mean in Java?

后端 未结 4 2029
有刺的猬
有刺的猬 2021-01-30 02:27

I\'ve quickly googled for an answer but could not not find/think of accurate search parameters.

I am teaching myself Java, but can\'t seem to find the meaning of a certa

4条回答
  •  故里飘歌
    2021-01-30 03:13

    The is the java syntax way of indicating a Generic Type. Essentially this just means that it can be a Node object that can take on any type at all.

    you should check this out for a good turorial on java generics

提交回复
热议问题