《Java语言程序设计》基础篇 第六版 英文版 (Y.dang Liang 著)课后习题答案 机械工...
Java语言程序设计1 / 81
&
[编程练习题答案]Java语言程序设计(基础篇)(进阶篇)第13、14、
15、24、25、26、28、29、30、31章部分习题答案,奇数题和部分
双数题是我自己做的,在此和大家分享(^_^~
Chapter 13Exercise 13.2 / 13.8 / 13.11
import javax.swing.*;
import java.awt.*;
public class Exercise13_2 extends JFrame {
// Create two buttons
private OvalButton jbtOk = new OvalButton("OK");
private OvalButton jbtCancel = new OvalButton("Cancel");
/** Default constructor */
public Exercise13_2() {
// Set the window title
setTitle("Exercise13_2");
// Set FlowLayout manager to arrange the components
**** Hidden Message *****
页:
[1]