Java 语法
Java 变量
Java 数据类型
Java 运算符
Java 字符串
Java 数学
Java 布尔值
Java 如果...否则
Java 开关
Java 循环
Java 数组
Java 方法
Java 类/对象
Java 异常

Menu
×
×
正确

练习:

创建并调用 MyClass 的类构造函数
按照注释在下面的代码中插入缺失的部分:

// Create a MyClass class public class MyClass { int x; // Create a class attribute x // Create a class constructor for the MyClass class public MyClass() { x = 5; // Set the initial value for the class attribute x to 5 } public static void main(String[] args) { // Create an myObj object of class MyClass (This will call the constructor) MyClass myObj = new MyClass(); // Print the value of x System.out.println(myObj.x); } }

不正确

点击 此处 重试

正确

下一题 ❯
// Create a MyClass class
public class  {
  int ;  // Create a class attribute x

  // Create a class constructor for the MyClass class
  public () {
    x = ;  // Set the initial value for the class attribute x to 5
  }

  public static void main(String[] args) {
    // Create an myObj object of class MyClass (This will call the constructor)
    MyClass  = new MyClass(); 
    // Print the value of x
    System.out.println(.);
  }
}







×

重置分数?