我是 Java 新手,这是一个真正的基本问题,所以请不要错过森林之树。我只需要知道如何访问从该方法返回的数据
private static int toInt( String number )
{
int multiplicand = 0;
// do stuff to figure out a multiplicand
return multiplicand;
}
public static void main( String[ ] args )
{
int anotherVariable = 53;
toInt( args[ 0 ] );
那么,在我从 toInt 方法返回以访问被乘数中的内容后,我在这里说什么?
假设我想乘以 multiplicand * anotherVariable 中返回的值。我不能使用 multiplicand,因为编辑器只是说“无法将 multiplcand 解析为变量”。提前感谢所有有耐心容忍我们新手的伟大程序员。