作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想我的标题不是很清楚,需要一个代码示例,所以给你:
public class ATM {
public static void main(String[] args) {
Keypad K=new Keypad();
K.mypin(pin);
}
}
这是主要方法,现在这里是另一个类中的方法:
public class Keypad{
public void mypin(int pin) {
System.out.print("Please enter your pin");
pin=scan.nextInt();
System.out.print(pin);
}
}
如何在我的主要方法中包含 pin=scan.nextInt();
并使其正常工作?你可能会问我为什么我想要这样,这只是因为这是我被要求做的。
最佳答案
如果我对你的理解正确,你想要类似的东西:
public class ATM {
public static void main(String[] args) {
System.out.print("Please enter your pin");
Scanner sc = new Scanner(System.in);
Keypad K=new Keypad();
K.mypin(sc.nextInt());
}
}
public class Keypad{
public void mypin(int pin) {
System.out.print(pin);
}
}
关于java - 如何将用户输入从 main 方法带到另一个类和方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57866939/
我是一名优秀的程序员,十分优秀!