Okay say I have a class:
public class ExampleClass() {
public void exampleClassMethod(ArrayList<CustomClass> abcdefg> arrList) {
....
}
public void exampleClassMethod2(ArgumentToTakeInAnyCustomClass custClassArg) {
....
}
}
Now I want to be able to pass in any array list of any objects into that method in that class.
Let's say my custom classes to pass in would be CustomClass1, CustomClass2, CustomClass3.
How would I set up that method to accept any ArrayList that I pass in? Also, lets say I just wanted to pass in one of those classes themselves, as in the second example method, how would I do that?
Thanks.
public void testerMethodInitiater() {
CustomClass1 abc = new CustomClass1();
tester((Object) abc);
}
public static void tester(Object abc) {
//do stuff
System.out.println(abc);
if(abc instanceof CustomClass1) {
System.out.println("This is a CustomClass1");
}
(I need to tell the program to create a new CustomClass1 here if it's a CustomClass1) tester;// = new Object<Universalvars.getClassInUse()>;
}
Code above prints out that the object is an instance of CustomClass1, but I'm not sure how to make a new CustomClass1 at this time unless I did a conditional statement naming all possibilities that could take place which I'm trying to avoid.