【JAVA语言程序设计基础篇】--图形-- 绘制封装表格类的思考

开始用的方法没有体现类的封装性 没有类的普遍性

package chapter15;

import java.awt.*;

import javax.swing.*;
@SuppressWarnings("serial")
public class exercise15_14 extends JFrame {
    public exercise15_14() {
    add(new barchart());
  }

  public static void main(String[] args) {
    exercise15_14 frame = new exercise15_14();
    frame.setTitle("Exercise15_14");
    frame.setSize(500, 200);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setLocationRelativeTo(null); // Center the frame
    frame.setVisible(true);
  }
}

@SuppressWarnings("serial")
class barchart extends JPanel{
	public barchart() {
	}
	String[] str = {"Project -- 20%", "Quizzes -- 10%","Midtems -- 30%", "Final -- 40%"};
	Color[] color = {Color.red,Color.yellow, Color.green, Color.blue};
	int[] number = {20,10,30,40};
	protected void paintComponent(Graphics g) {
		super.paintComponent(g);

		int max=0;
		for(int i=0;i<number.length;i++){
			max = Math.max(max, number[i]);
		}

		g.drawLine(5, getHeight()-10, getWidth()-10, getHeight()-10);
		int x = 15;
		int y = getHeight()-10;
		int singleWidth = (int)((getWidth()-10-5-20)/4);
		int maxHeight = getHeight()-50;
		for(int i=0;i<4;i++){
			g.setColor(color[i]);
			int newHeight = (int)(maxHeight *number[i]/max);
			g.fillRect(x, y-newHeight, singleWidth, newHeight);
			g.setColor(Color.black);
			g.drawString(str[i],x, y-newHeight-10);
			x+=singleWidth+5;
		}
	}

}

对其进行封装改编 使该表格类(barChart)具备普遍性

体现其封装性

package chapter15_编程练习题;
import java.awt.*;
import javax.swing.*;
@SuppressWarnings("serial")
public class Exercise15_14 extends JFrame {
    public Exercise15_14() {

    BarChart1 chart1 = new BarChart1();
    double[] data1 = {20, 10, 30, 40};
    String[] dataName1 = {"Project -- 20%", "Quizzes -- 10%",
		  "Midtems -- 30%", "Final -- 40%"};
    chart1.setData(dataName1, data1);//传进关键词
    add(chart1);
  }

  public static void main(String[] args) {
    Exercise15_14 frame = new Exercise15_14();
    frame.setTitle("Exercise15_14");
    frame.setSize(500, 200);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setLocationRelativeTo(null); // Center the frame
    frame.setVisible(true);
  }
}

@SuppressWarnings("serial")
class BarChart1 extends JPanel {
	BorderLayout borderLayout1 = new BorderLayout();
	Color[] colors = {Color.red, Color.yellow, Color.green, Color.blue,
		Color.cyan, Color.magenta, Color.orange, Color.pink,
		Color.darkGray};
	String[] dataName;
	double[] data;

	public void paintComponent(Graphics g) {
		super.paintComponent(g);

		// Find the maximum value in the data
		double max = data[0];
		for (int i=1; i<data.length; i++)
			max = Math.max(max, data[i]);

		int barWidth = (int)((getWidth() - 10.0) / data.length - 10);//设置单个宽度
		int maxBarHeight = getHeight() - 30;//设置表格中最大高度

		g.drawLine(5, getHeight() - 10, getWidth() - 5, getHeight() - 10);//底线

		int x = 15;
		for (int i = 0; i < data.length; i++) {
			g.setColor(colors[i % colors.length]);
			int newHeight = (int)(maxBarHeight * data[i] / max);//更新每个列的高度
			int y = getHeight() - 10 - newHeight;
			g.fillRect(x, y, barWidth, newHeight);
			g.setColor(Color.black);
			g.drawString(dataName[i], x, y - 7);
			x += barWidth + 10;//更新x轴坐标
		}
	}

  public void setData(String[] dataName, double[] data) {//从类外传进值 使该类具有封装性 普遍性
		this.dataName = dataName;
		this.data = data;
  }
}
时间: 2024-10-16 00:30:10

【JAVA语言程序设计基础篇】--图形-- 绘制封装表格类的思考的相关文章

【JAVA语言程序设计基础篇】--事件驱动程序设计--匿名类监听器

监听器类是特意为创建一个GUI组件而设计的监听器对象.监听器不被其他应用程序所共享,因此,正确的做法是将他作为一个内部类定义在框架类中. 当然,可以使用匿名内部类简化内部类监听器. 匿名内部类是没有名字的内部类. 他一步完成定义内部类和创建一个该类的实例. 由于匿名内部类是一种特殊的内部类,所以,可以将他看作有以下特征的内部类: 1.匿名内部类必须总是扩展父类或者实现接口,但他不能有显示的extends 和 implements子句. 2.匿名捏不累必须实现父类或者接口中的所有的抽象方法. 3.

【JAVA语言程序设计基础篇】--事件驱动程序设计--Timer类的动画

使用Timer类导包的时候,注意不要导错包,有好几个不同的Timer类 package chapter16; import java.awt.Graphics; import java.awt.GridLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.JFrame; import javax.swing.JPanel; import javax.s

Java语言程序设计基础篇 循环(四)

①打印:***** **** *** ** * for(int x=1; x<=5; x++) { for(int y=x; y<=5; y++) { System.out.print("*"); //向下一般的格式for(int y=x; y<=5; y++) } System.out.println(); } ②打印:* ** *** **** ***** for (int x=1; x<=5 ;x++ ) { for (int y=1;y<=x ;y

Java语言程序设计基础篇 方法(五)

生成随机字符 生成随机字符就是生成0到65535之间的一个随机整数,因为0<=Math.random()<1.0,必须在65535+1 (int) (Math.random() * (65535+1)) 随机生成小写字母 public class RandomCharacter { public static char getRandomCharacter(char ch1,char ch2){ return (char)(ch1 +Math.random() * (ch2 - ch1 + 1

Java语言程序设计基础篇 循环(四)练习

*4.21(计算不同利率下的贷款)编写程序,让用户输入贷款总额及以年为单位的贷款期限,以1/8为递增量,显示从5%到8%的利率下每月支付额和总偿还额.假设输入贷款总量为10 000,还贷期限为5年,所显示的输出如下: 贷款总额:to 000 年数:5 利率月支付额总偿还额 5%188 .71   11322.74 5 .125%189.28   11357.13 5 .25%189.85   11391.59 ... //Exercise3_26.java: displays the month

Java语言程序设计基础篇 数组(六)

Java语法之数组 数组的定义 数组是对象. 如:int [ ]  x = new int[100];或 :int x [ ]  = new int[100];(这种方式主要是为了适应C/C++程序员) 声明一个数组变量:int [ ] x;并不会在内存中给数组分配任何空间,仅创建一个引用数组的存储地址. 数组创建后,其元素赋予默认值,数值型基本数据类型默认值为0,char类型为'\u0000',boolean类型为false. 数组的静态初始化 如:int [ ] x = new int [

【JAVA语言程序设计基础篇】--图形-- 使用抽象方法绘制函数图形

一个很好的运用抽象类的例子 <span style="font-size:14px;">package chapter15_编程练习题; import java.awt.*; import javax.swing.*; @SuppressWarnings("serial") public class Exercise15_13 extends JFrame { public Exercise15_13() { setLayout(new GridLayo

【JAVA语言程序设计基础篇】--图形用户界面基础--一些总结

第12章 图形界面基础 1.那个类是JAVA GUI组件的根?容器类是component的子类吗?哪个类是Swing GUI组建的根? java.awt.component是所有java GUI组件类的根. 容器类如JFrame是组件的子类. JComponent是Swing GUI组件类的根. 2.AWT组件与Swing组建的不同? AWT的组件是重而swing组件轻量化. 3. 你可以添加一个按钮到一个框架. 答:正确 您可以将一个框架添加到面板中. 答:错误 你可以添加一个面板到一个框架.

【JAVA语言程序设计基础篇】--图形--一些练习

exercise15-01 package chapter15; import java.awt.Color; import java.awt.Graphics; import javax.swing.JFrame; import javax.swing.JPanel; @SuppressWarnings("serial") public class exercise15_01 extends JFrame { public exercise15_01() { add(new newp