当前位置: 技术问答>java相关
各位大侠,帮我看看为什么代码执行错误!!!
来源: 互联网 发布时间:2015-04-04
本文导语: 出错代码: public boolean action(Event evt,Object what){ if (evt.target instanceof Button){ ((CardLayout)getLayout()).next(this); return true;} else return false; } 出错信息: Note: xxx.java uses or orerides a depracated API. Note: Recompile w...
出错代码:
public boolean action(Event evt,Object what){
if (evt.target instanceof Button){
((CardLayout)getLayout()).next(this);
return true;}
else
return false;
}
出错信息:
Note: xxx.java uses or orerides a depracated API.
Note: Recompile with -deprecation for details.
是不是环境配置有问题,怎么解决?
我是新手,拜托!!!
public boolean action(Event evt,Object what){
if (evt.target instanceof Button){
((CardLayout)getLayout()).next(this);
return true;}
else
return false;
}
出错信息:
Note: xxx.java uses or orerides a depracated API.
Note: Recompile with -deprecation for details.
是不是环境配置有问题,怎么解决?
我是新手,拜托!!!
|
这是java 1.0的事件模式,已经不提倡使用了,你看的书最好是98年以后出版的