IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> Android中观察者模式(Observable)的理解,android应用程序开发第三版答案 -> 正文阅读

[移动开发]Android中观察者模式(Observable)的理解,android应用程序开发第三版答案

定义:“定义对象间的一种一对多的依赖关系,当一个对象的状态发生改变的时候,所有依赖于它的对象都将得到通知,并自动更新”,这就是所谓的观察者模式,照意思理解那么就一定会有观察者和被观察者了,在Java1.2之后,提供了两个类,即Observable被观察者,Observer观察者;

在Android中也提供了一个类Observable用于观察者模式,下面看看Observable 的源码便可以大意理解了。

/*

  • Copyright ? 2007 The Android Open Source Project

  • Licensed under the Apache License, Version 2.0 (the “License”);

  • you may not use this file except in compliance with the License.

  • You may obtain a copy of the License at

  •  http://www.apache.org/licenses/LICENSE-2.0
    
  • Unless required by applicable law or agreed to in writing, software

  • distributed under the License is distributed on an “AS IS” BASIS,

  • WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

  • See the License for the specific language governing permissions and

  • limitations under the License.

*/

package android.database;

import java.util.ArrayList;

/**

  • Provides methods for (un)registering arbitrary observers in an ArrayList.

*/

public abstract class Observable {

/**

  • The list of observers. An observer can be in the list at most

  • once and will never be null.

*/

protected final ArrayList mObservers = new ArrayList();

/**

  • Adds an observer to the list. The observer cannot be null and it must not already

  • be registered.

  • @param observer the observer to register

  • @throws IllegalArgumentException the observer is null

  • @throws IllegalStateException the observer is already registered

*/

public void registerObserver(T observer) {

if (observer == null) {

throw new IllegalArgumentException(“The observer is null.”);

}

synchronized(mObservers) {

if (mObservers.contains(observer)) {

throw new IllegalStateException(“Observer " + observer + " is already registered.”);

}

mObservers.add(observer);

}

}

/**

  • Removes a previously registered observer. The observer must not be null and it

  • must already have been registered.

  • @param observer the observer to unregister

  • @throws IllegalArgumentException the observer is null

  • @throws IllegalStateException the observer is not yet registered

*/

public void unregisterObserver(T observer) {

if (observer == null) {

throw new IllegalArgumentException(“The observer is null.”);

}

synchronized(mObservers) {

int index = mObservers.indexOf(observer);

if (index == -1) {

throw new IllegalStateException(“Observer " + observer + " was not registered.”);

}

mObservers.remove(index);

}

}

/**

  • Remove all registered observer

*/

public void unregisterAll() {

synchronized(mObservers) {

mObservers.clear();

}

}

}

当然这个类只是抽象类,如果我们需要用的话,还需要继承 这个类,这有一个方法,通知被观察者进行更

《Android学习笔记总结+最新移动架构视频+大厂安卓面试真题+项目实战源码讲义》

【docs.qq.com/doc/DSkNLaERkbnFoS0ZF】 完整内容开源分享

新。

观察者模式是软体设计模式的一种。在此种模式中,一个目标物件管理所有相依于它的观察者物件,并且在它本身的状态改变时主动发出通知。

  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2021-12-05 12:09:21  更:2021-12-05 12:11:25 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 6:59:01-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码