私はこのコードを持っています、それはここで許可されていない void 型と言っています (//エラー コメントを置く場所) &&..... を削除すると、エラーは発生しません
public void actionPerformed(ActionEvent ae) {
if (ae.getSource() == ok) {
Contact nweC = null;
String vnm = tfVoor.getText();
String anm = tfAchter.getText();
String em = tfEmail.getText();
if (em.trim().length() > 0 && !hetBoek.heeftContact(em)) {
nweC = new Contact(vnm, anm, em);
} else {
tfEmail.setText("");
JOptionPane.showMessageDialog(null, "Onjuist emailadres", "Mislukt", JOptionPane.PLAIN_MESSAGE);
}
//error if (nweC != null && hetBoek.voegContactToe(nweC)) {
JOptionPane.showMessageDialog(null, "Toevoegen gelukt", "Succes", JOptionPane.PLAIN_MESSAGE);
}
} else if (ae.getSource() == cancel) {
tfVoor.setText("");
tfAchter.setText("");
tfEmail.setText("");
} else if (ae.getSource() == toon) {
String s = hetBoek.toString();
JOptionPane.showMessageDialog(null, s, "Druk op OK",
JOptionPane.PLAIN_MESSAGE);
}
}
誰かが私を助けてくれることを願っています!ありがとう