回调函数

1 JavaScript 中使用回调函数: JS 回调函数浅析

// 函数A
function A(callback) {
	// 执行操作
	console.info("...");
	// 执行回调函数
	callback();
}
// 回调函数
function B() {
	console.info("callback");
}
// 执行A
A(B);

2 C 中使用回调函数: C语言回调函数详解

#include<stdio.h>

int Callback_1(int x) // Callback Function 1{
	printf("Hello, this is Callback_1: x = %d ", x);
	return 0;
}

int Handle(int y, int (*Callback)(int))
	printf("Entering Handle Function. ");
	Callback(y);
	printf("Leaving Handle Function. ");
}

int main(){
	Handle(8, Callback_1);
	return 0;
}

3 Java 中使用回调函数:

public class TestCallBack {

    public static void main(String[] args) {
        Consumer<Object> consumer = o -> System.out.println(o + " ");
        method(null, consumer);
        method(null, new CallBack() {
            @Override
            public Object callback(Object O) {
                // execute callback
                return null;
            }
        });
    }
    private static void method(Object a, Consumer<Object> consumer) {
        // ...
        consumer.accept(a);
    }
    private static void method(Object o, CallBack callBack) {
        // ...
        callBack.callback(o);
    }
}
interface CallBack {
    Object callback(Object o);
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值