伊莉討論區
標題:
請求幫助 程式語言 觀念 幫忙解一下
[打印本頁]
作者:
s8706
時間:
2011-11-22 09:51 AM
標題:
請求幫助 程式語言 觀念 幫忙解一下
請好心的各位順便說明一下
public class Test02 {
int a = 100, b = 200, c = 300;
public Test02(int r, boolean b) {
if(b != false) {
init();
}
getB(r);
}
private void init() {
a = 111;
b = 222;
c = 333;
}
public int getB(int r) {
a = a * r;
init();
b = a * r;
c = c - b - a;
return b;
}
public int getC() {
return c;
}
}
public class Test01 {
Test02 ts02;
public Test01() {
ts02 = new Test02(10, true);
int b = ts02.getB(5);
int c = ts02.getC();
b = ?, c = ?;
}
}
作者:
royden
時間:
2011-12-8 12:05 PM
這個應該是很基本的問題,如果用眼睛看不出來就找個complier去跑跑就好了不是嗎?
如果想知道程式流程,就設幾個中斷點,一步一步跟著觀查變數的變化就懂了~
歡迎光臨 伊莉討論區 (http://a401.file-static.com/)
Powered by Discuz!