“Klasa statyczna” Kod odpowiedzi

Klasa statyczna może mieć nie statyczny element w C#

Static class can't contain non-static members because by definition it can't be instantiated so there's no possibility to use these members. However, static members in non-static class can be used without having class instance - a bit different scenario, 
Raman

Klasa statyczna

public class Main {
  // Static method
  static void myStaticMethod() {
    System.out.println("Static methods can be called without creating objects");
  }

  // Public method
  public void myPublicMethod() {
    System.out.println("Public methods must be called by creating objects");
  }

  // Main method
  public static void main(String[ ] args) {
    myStaticMethod(); // Call the static method
    // myPublicMethod(); This would output an error

    Main myObj = new Main(); // Create an object of Main
    myObj.myPublicMethod(); // Call the public method
  }
}
naly moslih

Odpowiedzi podobne do “Klasa statyczna”

Pytania podobne do “Klasa statyczna”

Więcej pokrewnych odpowiedzi na “Klasa statyczna” w Java

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu