如何使用Java中的回调来调用函数,就像我在C#中一样?

前端之家收集整理的这篇文章主要介绍了如何使用Java中的回调来调用函数,就像我在C#中一样?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是 Java新手,但我需要编写类似C#代码的东西(这是手工打造的原型,只是为了说明我需要的东西)
private void ParentFunc()
{
    var worker = new WorkerClass()

    worker.DoWork(e => console.Write("Progress" + e));


}

public class WorkerClass()
{
    public method DoWork(Action<int> callback)
    {
        for (int i=1; i<1000; i++) callback.Invoke(i);  
    }
}

小解释.我在android中使用AsyncTask并在处理器外部调用,但希望它们发回信号,以便我可以发布进度.我不想把接口放在我的AsyncTask上

解决方法

由于不支持闭包,您必须使用接口和匿名内部类.
private void ParentFunc {
    WorkerClass worker = new WorkerClass();

    worker.doWork(new Callback<Integer>() {
        public void invoke(Integer arg) {
            System.out.println("Progress" + arg);
        }
    });
}

public class WorkerClass {
    public doWork(Callback<Integer> callback) {
        for (int i=1; i<1000; i++) callback.invoke(i);  
    }
}

public interface Callback<T> {
    public void invoke(T arg);
}
原文链接:https://www.f2er.com/java/127029.html

猜你在找的Java相关文章