IMAGEicon学习:它根据 Image 绘制 Icon。可使用 MediaTracker 预载根据 URL、文件名或字节数组创建的图像,以监视该图像的加载状态。与ICon的区别:Icon:图标,画像 Image:影像 Icon是接口,有以下方法 int getIconHeight(); int getIconWidth(); void paintIcon(Component c, Graphics g, int x, int y);ImageIcon实现Icon,从图像绘制图标的实现。 使用MediaTracker预先从URL,文件名或字节数组中获取创建的图像,实现图像的加载。-----「...