| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 937 人关注过本帖
标题:java编译时出现问题 ,谢谢了
取消只看楼主 加入收藏
冰山雪狼
Rank: 1
等 级:新手上路
帖 子:16
专家分:0
注 册:2007-10-24
收藏
 问题点数:0 回复次数:0 
java编译时出现问题 ,谢谢了


import java.awt.*;
import java.awt.event.*;
public class MultipleEventTester extends Frame implements WindowListener,MouseListener,KeyListener{
//定义域
public MultipleEventTester()
//定义构造方法
{
addWindowListener(this);
addMouseListener(this);
addKeyListener(this);
setSize(200,200);
//pack();
show();
}
//窗口处理事件
public void WindowClosing(WindowEvent we)
{ System.exit(0);}
public void WindowOpened(WindowEvent we)
{ System.out.println("窗口打开1");}
public void WindowIconified(WindowEvent we)
{System.out.println("窗口打开2");}
public void WindowDeiconified(WindowEvent we)
{System.out.println("窗口打开3"+we);}
public void WindowClosed(WindowEvent we)
{System.out.println("窗口打开4"+we);}
public void WindowActivated(WindowEvent we)
{System.out.println("窗口打开5"+we);}
public void WindowDeactivated(WindowEvent we)
{System.out.println("窗口打开6"+we);}
//鼠标事件处理方法
public void mousePressed(MouseEvent me)
{System.out.println("mouse Pressed"+me);}
public void mouseReleased(MouseEvent me)
{System.out.println("mouse Released"+me);}
//public void mouseReleased(MouseEvent me)
//{System.out.println("mouse Released"+me);}
public void mouseEntered(MouseEvent me)
{System.out.println("mouse Entered"+me);}
public void mouseExited(MouseEvent me)
{System.out.println("mouse Exit"+me);}
public void mouseClicked(MouseEvent me)
{System.out.println("mouse Click"+me);}
//键盘事件处理 方法
public void keyPressed(KeyEvent ke)
{System.out.println("Key Pressed1"+ke);}
public void keyReleased(KeyEvent ke)
{System.out.println("Key Released2"+ke);}
public void keyTyped(KeyEvent ke)
{System.out.println("Key Released3"+ke);}
//主函数
public static void main(String args[])
{ MultipleEventTester p=new MultipleEventTester();
}
}
---------------------------------------------------------------------------
MultipleEventTester.java:3: MultipleEventTester 不是抽象的,并且未覆盖 java.awt.
event.WindowListener 中的抽象方法 windowDeactivated(java.awt.event.WindowEvent)
public class MultipleEventTester extends Frame implements WindowListener,MouseL
istener,KeyListener{
^
注意:MultipleEventTester.java 使用或覆盖了已过时的 API。
注意:要了解详细信息,请使用 -Xlint:deprecation 重新编译。
1 错误

---------------------------------------------------------------------------------------------
本人初学JAVA 望大家多多指点
搜索更多相关主题的帖子: java awt public 编译 import 
2007-10-25 22:01
快速回复:java编译时出现问题 ,谢谢了
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.023554 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved