If I create a class, where will I store all the variables that can be used in different classes?
In static variables, and then import them into classes?
import static Const.*;
Is it worth doing this?
It turns out that all variables are imported and they will be stored in the memory of each class? Or will only those that will be used in the classroom be imported?