這是我的錯誤。有沒有人知道爲什麼我得到這個錯誤的問題?即時通訊使用JGrasp林一遍又一遍地得到相同的錯誤
PeerTutorReport.java:13: error: <identifier> expected
public static String[] getTutorNames(listNames) {
^
1 error
---- jGRASP wedge2:爲進程退出代碼爲1
import javax.swing.JOptionPane;
import java.util.Arrays;
public class Report {
public static void main(String[] args) {
String[] listNames = getTutorNames();
}
public static String[] getTutorNames(listNames) {
String firstName;
String lastName;
String[] listNames = new String[10];
for (int x = 0; x < listNames.length; x++) {
firstName = JOptionPane.showInputDialog(null, "Enter Tutor's First Name: ");
lastName = JOptionPane.showInputDialog(null, "Enter Tutor's Last Name: ");
if (firstName.equals("") && lastName.equals("")) {
break; // loop end
}
listNames[x] = lastName + ", " + firstName;
}
return listNames;
}
}
** **請不要修改最初的問題,否則答案無效。相反,在問題中添加新內容並更新爲代碼。 – 2013-04-05 05:06:07
我低估了這個問題的糟糕的研究工作。這是一個語法問題,錯誤消息(儘管模糊,因爲每個典型的Java語法錯誤消息)突出顯示了問題的一部分。 – Wug 2013-04-05 05:10:02
**請閱讀評論** – 2013-04-05 05:10:33