gpt4 book ai didi

java - 如何使用来自不同类的参数调用方法

转载 作者:行者123 更新时间:2023-12-01 18:22:55 25 4
gpt4 key购买 nike

可能是菜鸟问题,但我无法让一个类中带有参数的方法在另一个类中调用?

头等舱

public class Firstclass {

public static void main(String[] args) {
Test1 test = new Test1();
test.Passingvalue();
test.myMethod();

}
}

二等

import java.util.Scanner;

public class Test1 {

public void Passingvalue (){
Scanner Scan = new Scanner(System.in);
System.out.println("File Name ? ");
String txtFile = Scan.next();
}

public void myMethod(String txtFile){

System.out.print("Scan this file" + txtFile);

}
}

最佳答案

您可以在方法名称后面的括号中以逗号分隔列表的形式提供参数:

public static void main(String[] args) {
Test1 test = new Test1();

test.myMethod("my_file.txt");
}

关于java - 如何使用来自不同类的参数调用方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27175445/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com