我是相當新的Java編程...但是這真的讓我難住了,我搜索了一會兒,我無法找到一個明確的答案,我一直在尋找的......但讓我們說我有兩種方法如何從另一種方法中的一個方法調用整數?
public static void program1 (String[] args) {
Integer intMoney;
intMoney = 500;
}
public static void program2 (String[] args) {
String strYes;
strYes = JOptionPane.showInputDialog("type yes to subtract 100");
if((strYes.equals("Yes") || (strYes.equals("yes")))) {
/*((This is where I call the intMoney from program1) */ - 100;
}else{
JOptionPane.showMessageDialog(null, "Thats not yes!");
}
}
而且這裏是我得到真正卡住..說我有這樣程序1的另一種方法,但在另一種方法在程序1哪能呼籲intMoney
價值?
比方說,我有一個程序,並且我想intMoney
在一個單獨的方法中聲明,以便當方法program2重複時,intMoney
值不會更改,並且當再次調用該方法時它將會相同。
不介意;在if語句中,支持在 - 100 – user1247717 2012-03-04 05:30:02
之後,您可以輕鬆編輯您的文章以糾正錯誤。我們大多數人都畏懼看到類似的東西。 – 2012-03-04 05:38:19