“Kelas statis” Kode Jawaban

Kelas statis dapat memiliki anggota non statis di 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

Kelas statis

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

Jawaban yang mirip dengan “Kelas statis”

Pertanyaan yang mirip dengan “Kelas statis”

Lebih banyak jawaban terkait untuk “Kelas statis” di Java

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya