运行 ❯
获取你自己的
Java
服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
public class Main { int x; // Constructor with a parameter public Main(int x) { this.x = x; } // Call the constructor public static void main(String[] args) { Main myObj = new Main(5); System.out.println("Value of x = " + myObj.x); } }
x 的值为 5