I am debating whether to put static constants that will be accessed throughout instances of a specific class within that class, or in a separate utility class that will be composed only of static constants but will never actually have any instances.
Is additional hardware space allocated for static variables every time a new instance of a class is created?