2013-07-04 41 views
-4

我得到兩個與括號相關的錯誤。用大括號括起來得到錯誤

package firstframe; 
import javax.swing.*; 

import java.awt.*; 
import java.awt.event.ActionEvent; 
import java.awt.event.ActionListener; 
import java.awt.Font; 
import java.util.Properties; 
import java.text.*; 
import java.util.ArrayList; 
public class frame { 

    genericclass twelveoclockfix; 
    JFrame Frame1; 
    JPanel j2; 
    JPanel j4; 
    JButton b1; 
    JButton b2; 
    JTextField t1; 
    ArrayList<Integer> hour; 
    ArrayList<String> minute; 
    JComboBox<Integer> t2; 
    JComboBox<String> t3; 
    JComboBox<String> t4; 
    JPanel j1; 
    JLabel l1; 

    public frame() { 
     //twelveoclockfix = new genericclass(); 
     Frame1 = new JFrame("9gag's own: jClock"); 
     j2 = new JPanel(); 
     j4 = new JPanel(); 
     b1 = new JButton ("Get le Time!"); 
     b2 = new JButton ("Set le Alarm!"); 
     t1 = new JTextField(10); 
     hour = new ArrayList<Integer>(); 
     for (int i = 1; i <= 12; ++i) { 
      hour.add(i); String.format("%05d", 2); 
     } 
     minute = new ArrayList<String>(); 
     for (int i = 01; i <= 59; ++i) 
     { 
      if (i < 10) { 
       minute.add("0" + String.valueOf(i)); 
      } else { 
       minute.add(String.valueOf(i)); 
      } 
     } 
     t2 = new JComboBox<>(hour.toArray(new Integer[0])); 
     t3 = new JComboBox<>(minute.toArray(new String[0])); 
     t4 = new JComboBox<>(new String[]{"AM", "PM"}); 
     j1 = new JPanel (new FlowLayout()); 
     l1 = new JLabel ("time in comic sans:"); 
     j1.add(l1); 
     j1.add(t1); 
     j2.add(b1); 
     j4.add(b2); 
     j4.add(t2); 
     j4.add(t3); 
     j4.add(t4); 
     l1.setFont(new Font("Comic Sans MS",Font.PLAIN,20)); 
     t1.setFont(new Font("Comic Sans MS",Font.PLAIN,20)); 
     b1.setFont(new Font("Comic Sans MS",Font.PLAIN,20)); 
     Frame1.add(j1); 
     Frame1.add(j2); 
     Frame1.add(j4); 
     Frame1.setLayout(new FlowLayout()); 
     Frame1.setSize(400,150); 
     Frame1.setVisible(true); 
     Frame1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 
     b2.addActionListener(new ActionListener() { 
      public void actionPerformed(ActionEvent e) { 
     b1.addActionListener(new ActionListener() { 
      public void actionPerformed(ActionEvent e) { 
       t1.setText(""+genericclass.twelveoclockfix + ":" + genericclass.minfixed + " " + genericclass.AMPMtxt); 
       System.out.println(t2.getSelectedItem()); 
       JOptionPane.showMessageDialog(Frame1, "Le 9gag army waz h3r3!"); 

      }}); 


    } 
} 
+4

用你的IDE格式化縮進您的代碼,以便它會更容易修復這些錯誤。 –

+4

再一次,我們不是編譯器。請自己修復你的語法錯誤... – mithrop

+0

這是太多,要求喂勺。即使你是初學者,你也必須知道Ctrl + F。 –

回答

2

這很奇怪:你有兩個addActionListener(),一個在另一個裏面。我認爲你的錯誤在這裏:你關閉第二個,但不是第一個。與錯誤代碼的

部分:

  b2.addActionListener(new ActionListener() { 
        public void actionPerformed(ActionEvent e) { 
      b1.addActionListener(new ActionListener() { 
        public void actionPerformed(ActionEvent e) { 

錯誤應該與此代碼消失:

b2.addActionListener(new ActionListener() { 
     public void actionPerformed(ActionEvent e) { 
// Code added 
     } 
    }); 
// End of Added code 
    b1.addActionListener(new ActionListener() { 
     public void actionPerformed(ActionEvent e) { 
      t1.setText(""+genericclass.twelveoclockfix + ":" + genericclass.minfixed + " " + genericclass.AMPMtxt); 
      System.out.println(t2.getSelectedItem()); 
      JOptionPane.showMessageDialog(Frame1, "Le 9gag army waz h3r3!"); 

     }});