I\'m attempting to implement a circular queue class in Java. And in doing so I had to created a node class to group together elements and pointers to the next node. Being ci
The compile error is
Cannot refer to 'this' nor 'super' while explicitly invoking a constructor
Basically, you cannot use "this" from inside "this(...)"
this
this(...)