Misc Things
Final Exam Notes
- open-note
Topics to study/practice: * infix to postfix conversion * wrapper class objects * "autoboxing" * Nodes and LinkedLists * Stacks vs. Queues (FILO vs. FIFO) * subclasses: *
public class MyClass extends Shape
{
protected String B;
public void print();
{
System.out.println(super.getA() + " " + B);
}
}
- Overriding vs. Overloading
- Overloading: same method name, different parameters (diff. signature)
- ActionListeners
- Dynamic Programming
- GUI stuff
- JFrame
- JPanel
- Jlabel
- JButton
- Layout Managers
- Try-catch: finally
- checked exceptions require a try-catch block
- Recursive stuff
Final Review Slides
just find the slides on D2L