我是Java新手,我有一個小問題。我相信這是由於對概念的誤解。Java。從其他班級執行班級?
所以,我有主類菜單:
/**
* menu.java
*/
public class menu {
public void run() {
println ("1. Option#1.");
println ("2. Option#2.");
println ("============");
int choose = readInt("Enter a choice:");
if (choose == 1) {
// QUESTION>>>>> // ### how can I call class option1.java here?
}
}
/**
* option1.java
*/
public class option1 {
public void scriepedos() {
setFont("Times New Roman-24");
while (true) {
String str = readLine("Please enter a string: ");
if (str.equals("")) break;
String rev = reverseString(str);
println(rev);
}
}
private String reverseString(String str) {
String result = "";
for (int i=0; i<str.length();i++){
result=str.charAt(i)+result;
}
return result.toLowerCase();
}
}
提前非常感謝。 Leo
*您可以*撥打*實例*通過創建通過*對象*參考對象類的方法。 – adatapost 2012-08-16 08:21:09
你可以調用班級的方法,你不能打電話給班級 – Ilya 2012-08-16 08:21:57
謝謝!我知道這是一個概念問題... – 2012-08-16 08:31:55