android在Activity实例化abstract类出错? 400 报错
import java.util.Timer; import java.util.TimerTask;
import android.os.Handler;
public abstract class CountDown extends TimerTask {
private Timer timer = new Timer(true);
// 倒计时总的时间
private int totalSec;
// 临时变量 用来计算剩余时间
private int temp;
// 线程运行的标志位
private boolean running;
private int untilFinished;
final Handler cwjHandler = new Handler();
final Runnable onTickResults = new Runnable() {
public void run() {
onTick(untilFinished);
}
};
final Runnable onFinishResults = new Runnable() {
public void run() {
onFinish();
}
};
public CountDown(int totalSec) {
this.totalSec = totalSec;
}
public void start() {
if (temp == 0) {
// 延迟一秒执行,间隔为一秒
timer.schedule(this, 1000, 1000);
}
temp = 0;
running = true;
}
public void stop() {
running = false;
}
public boolean isRun(){
return running;
}
@Override
public void run() {
if (running) {
untilFinished = totalSec - temp;
cwjHandler.post(onTickResults);
if (totalSec == temp) {
cwjHandler.post(onFinishResults);
}
temp++;
}
}
/**
* 每次间隔执行
*
* @param untilFinished
* 剩余时间 (单位:秒)
*/
abstract void onTick(int untilFinished);
/**
* 倒数计时结束后执行
*/
abstract void onFinish();
}
一个计时器的类,我在Activity中调用,出错了。
public void AntiDownTime(int time, int mod) { cdt = new CountDown(time) { @Override void onTick(int untilFinished) { // TODO Auto-generated method stub // 每1000毫秒回调的方法 flashHandlerTime(untilFinished); } @Override void onFinish() { // TODO Auto-generated method stub cdt.stop(); } }; cdt.start(); }
错误内容如下:
Multiple markers at this lineThis class must implement the inherited abstract method CountDown.onFinish(), but cannot override it since it is not visible from new CountDown(){}. Either make the type abstract or make the inherited method visible
but cannot override it since it is not visible from new CountDown(){}:
这里是说子类看不到父类的方法(也就是无法继承)
1 子类和父类不在同一个包里面
2 你的父类的方法肯定没有写访问权限,默认的是包访问权限,在其他包里面是
访问不到的,给父类的方法添上public
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。