在《Programming abstractions in C》第107至110页,如何理解抽象数据类型及其在程序设计中的重要性?
- 内容介绍
- 文章标签
- 相关推荐
本文共计490个文字,预计阅读时间需要2分钟。
《C语言中的编程抽象》学习第46天,p107-p110,3.1小节——接口的概念总结如下:
一、技术总结
1.客户端:调用库的程序称为客户端。
2.接口:定义了类或对象之间交互的方式。
二、具体内容
1.客户端:在p108页,提到调用库的程序被称为客户端。
2.接口:在p108页,Thus, the chapter f阐述了接口的概念。
《Programming Abstractions In C》学习第46天,p107-p110,3.1小节——“The concept of interface”,总结如下:
一、技术总结
1.client
p108,调用library的program称为client。
2.interface
p108,"Todoso,thechapterfocusesontheboundarybetweenalibraryanditsclients,whichiscalledinterface."。
p108,“InEnglish,thewordinterfacemeansacommonboundrybetweentwodistinctentities.”
在C语言中,interface就是一个的“xxx.h”文件,如stdio.h。
本文共计490个文字,预计阅读时间需要2分钟。
《C语言中的编程抽象》学习第46天,p107-p110,3.1小节——接口的概念总结如下:
一、技术总结
1.客户端:调用库的程序称为客户端。
2.接口:定义了类或对象之间交互的方式。
二、具体内容
1.客户端:在p108页,提到调用库的程序被称为客户端。
2.接口:在p108页,Thus, the chapter f阐述了接口的概念。
《Programming Abstractions In C》学习第46天,p107-p110,3.1小节——“The concept of interface”,总结如下:
一、技术总结
1.client
p108,调用library的program称为client。
2.interface
p108,"Todoso,thechapterfocusesontheboundarybetweenalibraryanditsclients,whichiscalledinterface."。
p108,“InEnglish,thewordinterfacemeansacommonboundrybetweentwodistinctentities.”
在C语言中,interface就是一个的“xxx.h”文件,如stdio.h。

