0

0

(一):在Typescript和Java中应用“接口隔离原则”

霞舞

霞舞

发布时间:2024-11-26 09:09:40

|

340人浏览过

|

来源于dev.to

转载

(一):在typescript和java中应用“接口隔离原则”

概念

solid 是一个缩写词,代表面向对象编程的五个基本原则,由 robert c. martin(鲍勃大叔)提出。在这里您可以阅读有关他的文章的更多信息。
这些原则旨在改进代码的结构和维护,使其更加灵活、可扩展且更易于理解。这些原则可以帮助程序员创建更有组织的代码、划分职责、减少依赖、简化重构过程并促进代码重用。

缩写中的“i”代表“接口隔离原则”。 bob叔叔用来定义这个原则的一句话是:

“任何客户都不应该被迫依赖他们不使用的界面”

接口隔离原则解决了一个常见问题:接口过大迫使不需要它们的类实现不必要的实现。

实际应用

想象一个应用程序中的身份验证系统,其中使用不同的方法来验证用户身份(例如,通过密码、通过生物识别、通过 qr 码)。

Android中文帮助文档pdf版
Android中文帮助文档pdf版

Android 是一个专门针对移动设备的软件集,它包括一个操作系统,中间件和一些重要的应用程序。Beta版的 Android SDK 提供了在Android平台上使用JaVa语言进行Android应用开发必须的工具和API接口。 特性  应用程序框架 支持组件的重用与替换  Dalvik 虚拟机 专为移动设备优化  集成的浏览器 基于开源的WebKit 引擎  优化的图形库 包括定制的2D图形库,3D图形库基于

下载

首先我们看一下这个类在java和typescript中不使用isp的情况下的应用:

立即学习Java免费学习笔记(深入)”;

爪哇

interface authenticator {
    boolean authenticatewithpassword(string userid, string password);
    boolean authenticatewithbiometrics(string userid);
    boolean authenticatewithqrcode(string qrcode);
}

class passwordauthenticator implements authenticator {
    @override
    public boolean authenticatewithpassword(string userid, string password) {
        system.out.println("authenticating with password...");
        return true;
    }

    @override
    public boolean authenticatewithbiometrics(string userid) {
        throw new unsupportedoperationexception("not implemented");
    }

    @override
    public boolean authenticatewithqrcode(string qrcode) {
        throw new unsupportedoperationexception("not implemented");
    }
}

打字稿

interface authenticator {
  authenticatewithpassword(userid: string, password: string): boolean;
  authenticatewithbiometrics(userid: string): boolean;
  authenticatewithqrcode(qrcode: string): boolean;
}

class passwordauthenticator implements authenticator {
  authenticatewithpassword(userid: string, password: string): boolean {
    console.log("authenticating with password...");
    return true;
  }

  authenticatewithbiometrics(userid: string): boolean {
    throw new error("not implemented");
  }

  authenticatewithqrcode(qrcode: string): boolean {
    throw new error("not implemented");
  }
}

问题:

  1. 未使用的方法:passwordauthenticator 类实现了对其功能没有意义的方法。
  2. 维护麻烦:如果接口发生变化,所有实现类都需要更改,即使它们不使用新方法。
  3. 单一责任违规:班级开始处理不应该属于他们的问题。

为了解决这个问题,我们可以将authenticator接口拆分为更小、更具体的接口。

爪哇

interface passwordauth {
    boolean authenticatewithpassword(string userid, string password);
}

interface biometricauth {
    boolean authenticatewithbiometrics(string userid);
}

interface qrcodeauth {
    boolean authenticatewithqrcode(string qrcode);
}

class passwordauthenticator implements passwordauth {
    @override
    public boolean authenticatewithpassword(string userid, string password) {
        system.out.println("authenticating with password...");
        return true;
    }
}

class biometricauthenticator implements biometricauth {
    @override
    public boolean authenticatewithbiometrics(string userid) {
        system.out.println("authenticating with biometrics...");
        return true;
    }
}

class qrcodeauthenticator implements qrcodeauth {
    @override
    public boolean authenticatewithqrcode(string qrcode) {
        system.out.println("authenticating with qr code...");
        return true;
    }
}

打字稿

interface PasswordAuth {
  authenticateWithPassword(userId: string, password: string): boolean;
}

interface BiometricAuth {
  authenticateWithBiometrics(userId: string): boolean;
}

interface QRCodeAuth {
  authenticateWithQRCode(qrCode: string): boolean;
}

class PasswordAuthenticator implements PasswordAuth {
  authenticateWithPassword(userId: string, password: string): boolean {
    console.log("Authenticating with password...");
    return true;
  }
}

class BiometricAuthenticator implements BiometricAuth {
  authenticateWithBiometrics(userId: string): boolean {
    console.log("Authenticating with biometrics...");
    return true;
  }
}

class QRCodeAuthenticator implements QRCodeAuth {
  authenticateWithQRCode(qrCode: string): boolean {
    console.log("Authenticating with QR Code...");
    return true;
  }
}

重构的好处

  1. 特定接口:每个类仅实现它实际使用的方法。
  2. 灵活性:添加新的身份验证方法或模式不会影响现有实现。
  3. 更简单的维护:减少代码更改的影响,避免不必要的重构。

结论

热门AI工具

更多
DeepSeek
DeepSeek

幻方量化公司旗下的开源大模型平台

豆包大模型
豆包大模型

字节跳动自主研发的一系列大型语言模型

通义千问
通义千问

阿里巴巴推出的全能AI助手

腾讯元宝
腾讯元宝

腾讯混元平台推出的AI助手

文心一言
文心一言

文心一言是百度开发的AI聊天机器人,通过对话可以生成各种形式的内容。

讯飞写作
讯飞写作

基于讯飞星火大模型的AI写作工具,可以快速生成新闻稿件、品宣文案、工作总结、心得体会等各种文文稿

即梦AI
即梦AI

一站式AI创作平台,免费AI图片和视频生成。

ChatGPT
ChatGPT

最最强大的AI聊天机器人程序,ChatGPT不单是聊天机器人,还能进行撰写邮件、视频脚本、文案、翻译、代码等任务。

相关专题

更多
TypeScript工程化开发与Vite构建优化实践
TypeScript工程化开发与Vite构建优化实践

本专题面向前端开发者,深入讲解 TypeScript 类型系统与大型项目结构设计方法,并结合 Vite 构建工具优化前端工程化流程。内容包括模块化设计、类型声明管理、代码分割、热更新原理以及构建性能调优。通过完整项目示例,帮助开发者提升代码可维护性与开发效率。

42

2026.02.13

TypeScript全栈项目架构与接口规范设计
TypeScript全栈项目架构与接口规范设计

本专题面向全栈开发者,系统讲解基于 TypeScript 构建前后端统一技术栈的工程化实践。内容涵盖项目分层设计、接口协议规范、类型共享机制、错误码体系设计、接口自动化生成与文档维护方案。通过完整项目示例,帮助开发者构建结构清晰、类型安全、易维护的现代全栈应用架构。

90

2026.02.25

go语言 面向对象
go语言 面向对象

本专题整合了go语言面向对象相关内容,阅读专题下面的文章了解更多详细内容。

57

2025.09.05

java面向对象
java面向对象

本专题整合了java面向对象相关内容,阅读专题下面的文章了解更多详细内容。

61

2025.11.27

硬盘接口类型介绍
硬盘接口类型介绍

硬盘接口类型有IDE、SATA、SCSI、Fibre Channel、USB、eSATA、mSATA、PCIe等等。详细介绍:1、IDE接口是一种并行接口,主要用于连接硬盘和光驱等设备,它主要有两种类型:ATA和ATAPI,IDE接口已经逐渐被SATA接口;2、SATA接口是一种串行接口,相较于IDE接口,它具有更高的传输速度、更低的功耗和更小的体积;3、SCSI接口等等。

1708

2023.10.19

PHP接口编写教程
PHP接口编写教程

本专题整合了PHP接口编写教程,阅读专题下面的文章了解更多详细内容。

549

2025.10.17

php8.4实现接口限流的教程
php8.4实现接口限流的教程

PHP8.4本身不内置限流功能,需借助Redis(令牌桶)或Swoole(漏桶)实现;文件锁因I/O瓶颈、无跨机共享、秒级精度等缺陷不适用高并发场景。本专题为大家提供相关的文章、下载、课程内容,供大家免费下载体验。

2332

2025.12.29

java接口相关教程
java接口相关教程

本专题整合了java接口相关内容,阅读专题下面的文章了解更多详细内容。

42

2026.01.19

Golang 测试体系与代码质量保障:工程级可靠性建设
Golang 测试体系与代码质量保障:工程级可靠性建设

Go语言测试体系与代码质量保障聚焦于构建工程级可靠性系统。本专题深入解析Go的测试工具链(如go test)、单元测试、集成测试及端到端测试实践,结合代码覆盖率分析、静态代码扫描(如go vet)和动态分析工具,建立全链路质量监控机制。通过自动化测试框架、持续集成(CI)流水线配置及代码审查规范,实现测试用例管理、缺陷追踪与质量门禁控制,确保代码健壮性与可维护性,为高可靠性工程系统提供质量保障。

6

2026.02.28

热门下载

更多
网站特效
/
网站源码
/
网站素材
/
前端模板

精品课程

更多
相关推荐
/
热门推荐
/
最新课程
TypeScript 教程
TypeScript 教程

共19课时 | 3.2万人学习

TypeScript——十天技能课堂
TypeScript——十天技能课堂

共21课时 | 1.2万人学习

TypeScript-45分钟入门
TypeScript-45分钟入门

共6课时 | 0.5万人学习

关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送

Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号