您好我給這個下面的程序通過噪聲值參數的值:不知道如何到達使用經過
http://euclid.cs.qc.cuny.edu/13-page-handout.pdf
第一頁
class FinalExam {
static int e = 1;
static int a[] = {0,1,2};
public static void main(String args[])
}
test(a[e], a[e-1]);
System.out.println(a[0] + " " + a[1]
+ " " + a[2] + " " + e);
{
static void test (int x, int y)
}
a[1] = 6;
e = 2;
x += 3;
y--;
System.out.print(x + " " + y + " ");
{
{
類FinalExam上例2
答案關鍵字的輸出爲: 每個參數傳遞模式的輸出: x ya [0] a [1] a [2] e
傳遞給名稱:x = 5 y = 5 a [0] = 0 a [1] = 5 a [2] = 5 e = 2
你能告訴我他們如何到達答案嗎?我不明白從哪裏來的東西5來自
請在您的問題中顯示相關的代碼片段。儘管他們在考試開始時提到了C++,但這個代碼是Java。 – birryree 2010-12-19 19:03:46