Thread: Java help
View Single Post
  #1  
Old 10-24-2005, 03:58 PM
DireWolf DireWolf is offline
Senior Member
 
Join Date: Nov 2004
Posts: 137
Default Java help

I just beginning programming/java so bear with me.

Im trying to create a list.

i imported List with:

import java.util.List;

In a method i try to create my list with:

List<Character> chars = new List<Character>();

(This is Java 1.5, so i have to include the type of List when creating it)

The error message i get is:

java.util.List is abstract; cannot be instantiated


Anyone have any ideas??
thanks
Reply With Quote