0

0

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

霞舞

霞舞

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

|

340人浏览过

|

来源于dev.to

转载

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

概念

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

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

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

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

实际应用

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

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

Tome
Tome

先进的AI智能PPT制作工具

下载

立即学习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

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

豆包大模型
豆包大模型

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

WorkBuddy
WorkBuddy

腾讯云推出的AI原生桌面智能体工作台

腾讯元宝
腾讯元宝

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

文心一言
文心一言

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

讯飞写作
讯飞写作

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

即梦AI
即梦AI

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

ChatGPT
ChatGPT

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

相关专题

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

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

47

2026.02.13

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

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

194

2026.02.25

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

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

58

2025.09.05

java面向对象
java面向对象

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

63

2025.11.27

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

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

1946

2023.10.19

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

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

656

2025.10.17

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

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

2399

2025.12.29

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

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

47

2026.01.19

Python异步编程与Asyncio高并发应用实践
Python异步编程与Asyncio高并发应用实践

本专题围绕 Python 异步编程模型展开,深入讲解 Asyncio 框架的核心原理与应用实践。内容包括事件循环机制、协程任务调度、异步 IO 处理以及并发任务管理策略。通过构建高并发网络请求与异步数据处理案例,帮助开发者掌握 Python 在高并发场景中的高效开发方法,并提升系统资源利用率与整体运行性能。

37

2026.03.12

热门下载

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

精品课程

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

共19课时 | 3.4万人学习

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号