"variable might have not been intialized
List retList
If
retList.Add(objectp[i]) //*** this line will prompt variable might have not been intialized
Root cause: Java.util.list is abstract, can not be instantialized
Solution: List retList=new ArrayList(); //=new List() is abstract and not valid
If
retList.Add(objectp[i]) //*** this line will prompt variable might have not been intialized
Root cause: Java.util.list is abstract, can not be instantialized
Solution: List retList=new ArrayList(); //=new List() is abstract and not valid
Labels: programming
0 Comments:
Post a Comment
<< Home