I have the following code, when i run it though debugger, it keeps on looping until it reaches stack overflow: null
public class List{
private list<String> strlist;
private String str1 = "zxc";
private String str2 = "ugh";
public List(String x, String y){
{
strlist.add(str1,str2)
}
Can anyone try to solve this for me? Thanks.
listclass something you wrote? If so, we cannot help you unless you provide us its code (more specifically, it'sadd(int,int)method code). – Adam Paynter Sep 11 '11 at 12:27private list<String>will not compile unless you have alistclass. Please post the shortest snippet that both compiles and reproduces your issue. – Mat Sep 11 '11 at 12:27