Statics are STATIC, they exist all the time. NON-STATIC means they only exist after you "new' and assign said resultant object to a variable, and will only exist on that variable. They never actually exist in memory on the class.
That's kind of the POINT of static and non-static... so if you're asking this you kind-of missed the point.