Callback in Android?(Android中的回调?)
问题描述
在Android应用开发中,我经常会在很多地方遇到CallBack
这个词.我想知道从技术上告诉我们意味着什么——以及如何设法在应用程序中使用 callback
.我需要一个指南来理解和使用它.
In Android application development, I frequently go through the word CallBack
in many places. I want to know what it means to tell us technically - and how I can manage to use the callback
in applications. I need a guide to understand it and use it.
推荐答案
我想知道这是什么意思,告诉我们在技术上
i want to know what it means, tell us technically
http://en.wikipedia.org/wiki/Callback_%28computer_science%29
在没有函数值参数的面向对象编程语言中,例如Java,可以通过传递一个抽象类或接口来模拟[回调],其中接收者将调用一个或多个方法,而调用端提供一个具体的实现.这些对象实际上是一组回调,以及它们需要操作的数据.它们在实现各种设计模式(如访问者、观察者和策略)中很有用."
"In object-oriented programming languages without function-valued arguments, such as Java, [callbacks] can be simulated by passing an abstract class or interface, of which the receiver will call one or more methods, while the calling end provides a concrete implementation. Such objects are effectively a bundle of callbacks, plus the data they need to manipulate. They are useful in implementing various design patterns such as Visitor, Observer, and Strategy."
我如何管理回调应用
我不知道这是什么意思.
I have no idea what this means.
这篇关于Android中的回调?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Android中的回调?
基础教程推荐
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01