Get off my post troll. I know you read above, so you know which methods I am having problems with.
Type: Posts; User: Neobs
Get off my post troll. I know you read above, so you know which methods I am having problems with.
Thanks for mocking me on both my threads...
Obviously I don’t understand them, hence why I am looking for help. Thanks though.
How do I look at the start of a String?
I'm trying to read the inventory for a game in a text file. The inventory looks like this:
Sword 5
Shield 5 10
Cake
Sword 7
Shield 1 5
I have a Generic Linked list in Java.
class Node{
T info;
Node next;
Node (T x){
info = x;
next = null;