0
What is the difference between Class.ForName and new demo();
1 Answer
0
Without code example youre going to get a vague answer. Class is a class. Class.ForName is probably a call of a variable of that class. new demo() looks like a class instantiation, like Demo d = new demo();