我比较新,不提点人通过,使我困惑不解。 我写了家庭工作功能,要求我恢复用户投入的长度,并将使用投入分配给一个阵列,因为这种方法消失了用户投入阵列,这是错误的。
public static int readArray(char[] intoArray)
{
char[] capture = captureInputAsCharArray(); //User input comes back as char[]
System.arraycopy(intoArray,0, capture, 0, capture.length);
return capture.length;
}
public static main(String[] args)
{
size = readArray(arrItem7); // item 7
System.out.println(size);
printOneInLine(arrItem7); // prints individual elements of array
}