Doubly Linked List with different type of head

87 Views Asked by At

I want to make a doubly linked list Train where head is type of Locomotive and nodes are type of Wagon.

I thought about using templates, Train<T>, but I tried to use if(Train<T> cart instance of Locomotive) and failed, so that won't work...

Any ideas?

1

There are 1 best solutions below

3
On BEST ANSWER

Make a LinkedList of type TrainCar as a superclass or interface, and then Locomotive and Wagon either extend or implement TrainCar.