“Что делает Static на Java” Ответ

Что означает статика Java

/*static means that the variable or method marked as such is 
available at the class level. In other words, you don't need to 
create an instance of the class to access it. */
public class Foo {
  public static void doStuff(){
        // does stuff
    }
}

/* So, instead of creating an instance of Foo and then calling doStuff 
like this: */
Foo f = new Foo();
f.doStuff();

//You just call the method directly against the class, like so:
Foo.doStuff();
Step-Coder

Что делает Static на Java

// Java program to demonstrate that a static member
// can be accessed before instantiating a class
  
class Test
{
    // static method
    static void m1()
    {
        System.out.println("from m1");
    }
  
    public static void main(String[] args)
    {
          // calling m1 without creating
          // any object of class Test
           m1();
    }
}
Cody Mitchell

Ответы похожие на “Что делает Static на Java”

Вопросы похожие на “Что делает Static на Java”

Больше похожих ответов на “Что делает Static на Java” по Java

Смотреть популярные ответы по языку

Смотреть другие языки программирования