Java Essentials Flashcards
1
Q
Arrays
A
An array is a container object that holds a fixed number of values of a single type.
2
Q
Button listener
A
b.addActionListener(new ActionListener(){ public void actionPerformed(ActionEvent e){ System.out.println("I'm here");
} });