I have a subclass (Item) in a java class named (tools) that I would like to use in a few different classes in my app now what I would like to know is what is the difference between using
import com.example.tools;
and creating an instance of the class :
Tools item = new Tools();
do they both get the same results and is one slower than the other or is there a reason why I would use one instead of the other . thanks for your answers.