我一直在尝试使用 main 方法将我从另一个方法获得的值打印到另一个 void 方法中......是的,我知道,解释起来非常复杂,所以我将在下面展示它的样子:
public class MultMethods{
public static void main(String[] args){
anotherMethod();
printMethod();
}
public static String anotherMethod(){
return value;
}
public static void printMethod(){
System.out.println();
}
}