No (zero) instances of the class need to be created to use the method if it is declared as static... that saves cpu cycles necessary for construction processing, heap space, and cpu cycles by the Garbage collector in reclaiming the object from the heap...
Also, your question, as it it written
" ... only one instance of a static method is created (on the type)... "
implies that for an instance method, the code for the method is repeated for each instance of the class that is created. That is not true. No matter how many instances you create for any type, the code for the methods is loaded intto memory only once. The object stored on the heap for each instance only creates stores the type's "State", (non-static fields & a few misc tracking variables).
