C语言接口与实现

C语言接口与实现
分享
扫描下方二维码分享到微信
打开微信,点击右上角”+“,
使用”扫一扫“即可将网页分享到朋友圈。
作者: [美]
2010-08
版次: 1
ISBN: 9787115231130
定价: 79.00
装帧: 平装
开本: 16开
纸张: 胶版纸
页数: 518页
字数: 629千字
正文语种: 英语
原版书名: C Interfaces and Implementations: Techniques for Creating Reusable Software
38人买过
  • 《C语言接口与实现:创建可重用软件的技术(英文版)》概念清晰、实例详尽,是一本有关设计、实现和有效使用C语言库函数,掌握创建可重用C语言软件模块技术的参考指南。书中提供了大量实例,重在阐述如何用一种与语言无关的方法将接口设计实现独立出来,从而用一种基于接口的设计途径创建可重用的API。
    《C语言接口与实现:创建可重用软件的技术(英文版)》是所有C语言程序员不可多得的好书,也是所有希望掌握可重用软件模块技术的人员的理想参考书,适合各层次的面向对象软件开发人员、系统分析员阅读。 汉森(DavidR.Hanson),普林斯顿大学计算机科学系教授,有着二十多年编程语言研究经验.他曾经同贝尔实验室合作开展研究工作,是适用于UNIX系统上的高质量C编译器Icc的开发者之一。 1Introduction1
    1.1LiteratePrograms2
    1.2ProgrammingStyle8
    1.3Efficiency11
    FurtherReading12
    Exercises13

    2InterfacesandImplementations15
    2.1Interfaces15
    2.2Implementations18
    2.3AbstractDataTypes21
    2.4ClientResponsibilities24
    2.5Efficiency30
    FurtherReading30
    Exercises31

    3Atoms33
    3.1Interface33
    3.2Implementation34
    FurtherReading42

    4ExceptionsandAssertions45
    4.1Interface47
    4.2Implementation53
    4.3Assertions59
    FurtherReading63
    Exercises64

    5MemoryManagement67
    5.1Interface69
    5.2ProductionImplementation73
    5.3CheckingImplementation76
    FurtherReading85
    Exercises86

    6MoreMemoryManagement89
    6.1Interface90
    6.2Implementation92
    FurtherReading98
    Exercises100

    7Lists103
    7.1Interface103
    7.2Implementation108
    FurtherReading113
    Exercises114

    8Tables115
    8.1Interface115
    8.2Example:WordFrequencies118
    8.3Implementation125
    FurtherReading132
    Exercises133

    9Sets137
    9.1Interface138
    9.2Example:Cross-ReferenceListings140
    9.3Implementation148
    9.3.1MemberOperations150
    9.3.2SetOperations154
    FurtherReading158
    Exercises158

    10DynamicArrays161
    10.1Interfaces162
    10.2Implementation165
    FurtherReading169
    Exercises169

    11Sequences171
    11.1Interface171
    11.2Implementation174
    FurtherReading180
    Exercises180

    12Rings183
    12.1Interface183
    12.2Implementation187
    FurtherReading196
    Exercises197

    13BitVectors199
    13.1Interface199
    13.2Implementation202
    13.2.1MemberOperations204
    13.2.2Comparisons209
    13.2.3SetOperations211
    FurtherReading213
    Exercises21314Formatting215

    14.1Interface216
    14.1.1FormattingFunctions216
    14.1.2ConversionFunctions219
    14.2Implementation224
    14.2.1FormattingFunctions225
    14.2.2ConversionFunctions232
    FurtherReading238
    Exercises239

    15Low-LevelStrings241
    15.1Interface243
    15.2Example:PrintingIdentifiers249
    15.3Implementation251
    15.3.1StringOperations252
    15.3.2AnalyzingStrings258
    15.3.3ConversionFunctions263
    FurtherReading264
    Exercises265

    16High-LevelStrings269
    16.1Interface269
    16.2Implementation276
    16.2.1StringOperations281
    16.2.2MemoryManagement285
    16.2.3AnalyzingStrings288
    16.2.4ConversionFunctions293
    FurtherReading293
    Exercises294

    17Extended-PrecisionArithmetic297
    17.1Interface297
    17.2Implementation303
    17.2.1AdditionandSubtraction305
    17.2.2Multiplication307
    17.2.3DivisionandComparison309
    17.2.4Shifting315
    17.2.5StringConversions319
    FurtherReading321
    Exercises322

    18Arbitrary-PrecisionArithmetic323
    18.1Interface323
    18.2Example:ACalculator327
    18.3Implementation334
    18.3.1NegationandMultiplication337
    18.3.2AdditionandSubtraction338
    18.3.3Division342
    18.3.4Exponentiation343
    18.3.5Comparisons346
    18.3.6ConvenienceFunctions347
    18.3.7Shifting349
    18.3.8StringandIntegerConversions350
    FurtherReading353
    Exercises354

    19Multiple-PrecisionArithmetic357
    19.1Interface358
    19.2Example:AnotherCalculator365
    19.3Implementation373
    19.3.1Conversions377
    19.3.2UnsignedArithmetic380
    19.3.3SignedArithmetic383
    19.3.4ConvenienceFunctions388
    19.3.5ComparisonsandLogicalOperations395
    19.3.6StringConversions399
    FurtherReading402
    Exercises402

    20Threads405
    20.1Interfaces408
    20.1.1Threads409
    20.1.2GeneralSemaphores413
    20.1.3SynchronousCommunicationChannels417
    20.2Examples418
    20.2.1SortingConcurrently418
    20.2.2CriticalRegions423
    20.2.3GeneratingPrimes426
    20.3Implementations431
    20.3.1SynchronousCommunicationChannels431
    20.3.2Threads434
    20.3.3ThreadCreationandContext-Switching446
    20.3.4Preemption454
    20.3.5GeneralSemaphores457
    20.3.6Context-SwitchingontheMIPSandALPHA459
    FurtherReading463
    Exercises465
    InterfaceSummary469
    Bibliography497
    Index505
  • 内容简介:
    《C语言接口与实现:创建可重用软件的技术(英文版)》概念清晰、实例详尽,是一本有关设计、实现和有效使用C语言库函数,掌握创建可重用C语言软件模块技术的参考指南。书中提供了大量实例,重在阐述如何用一种与语言无关的方法将接口设计实现独立出来,从而用一种基于接口的设计途径创建可重用的API。
    《C语言接口与实现:创建可重用软件的技术(英文版)》是所有C语言程序员不可多得的好书,也是所有希望掌握可重用软件模块技术的人员的理想参考书,适合各层次的面向对象软件开发人员、系统分析员阅读。
  • 作者简介:
    汉森(DavidR.Hanson),普林斯顿大学计算机科学系教授,有着二十多年编程语言研究经验.他曾经同贝尔实验室合作开展研究工作,是适用于UNIX系统上的高质量C编译器Icc的开发者之一。
  • 目录:
    1Introduction1
    1.1LiteratePrograms2
    1.2ProgrammingStyle8
    1.3Efficiency11
    FurtherReading12
    Exercises13

    2InterfacesandImplementations15
    2.1Interfaces15
    2.2Implementations18
    2.3AbstractDataTypes21
    2.4ClientResponsibilities24
    2.5Efficiency30
    FurtherReading30
    Exercises31

    3Atoms33
    3.1Interface33
    3.2Implementation34
    FurtherReading42

    4ExceptionsandAssertions45
    4.1Interface47
    4.2Implementation53
    4.3Assertions59
    FurtherReading63
    Exercises64

    5MemoryManagement67
    5.1Interface69
    5.2ProductionImplementation73
    5.3CheckingImplementation76
    FurtherReading85
    Exercises86

    6MoreMemoryManagement89
    6.1Interface90
    6.2Implementation92
    FurtherReading98
    Exercises100

    7Lists103
    7.1Interface103
    7.2Implementation108
    FurtherReading113
    Exercises114

    8Tables115
    8.1Interface115
    8.2Example:WordFrequencies118
    8.3Implementation125
    FurtherReading132
    Exercises133

    9Sets137
    9.1Interface138
    9.2Example:Cross-ReferenceListings140
    9.3Implementation148
    9.3.1MemberOperations150
    9.3.2SetOperations154
    FurtherReading158
    Exercises158

    10DynamicArrays161
    10.1Interfaces162
    10.2Implementation165
    FurtherReading169
    Exercises169

    11Sequences171
    11.1Interface171
    11.2Implementation174
    FurtherReading180
    Exercises180

    12Rings183
    12.1Interface183
    12.2Implementation187
    FurtherReading196
    Exercises197

    13BitVectors199
    13.1Interface199
    13.2Implementation202
    13.2.1MemberOperations204
    13.2.2Comparisons209
    13.2.3SetOperations211
    FurtherReading213
    Exercises21314Formatting215

    14.1Interface216
    14.1.1FormattingFunctions216
    14.1.2ConversionFunctions219
    14.2Implementation224
    14.2.1FormattingFunctions225
    14.2.2ConversionFunctions232
    FurtherReading238
    Exercises239

    15Low-LevelStrings241
    15.1Interface243
    15.2Example:PrintingIdentifiers249
    15.3Implementation251
    15.3.1StringOperations252
    15.3.2AnalyzingStrings258
    15.3.3ConversionFunctions263
    FurtherReading264
    Exercises265

    16High-LevelStrings269
    16.1Interface269
    16.2Implementation276
    16.2.1StringOperations281
    16.2.2MemoryManagement285
    16.2.3AnalyzingStrings288
    16.2.4ConversionFunctions293
    FurtherReading293
    Exercises294

    17Extended-PrecisionArithmetic297
    17.1Interface297
    17.2Implementation303
    17.2.1AdditionandSubtraction305
    17.2.2Multiplication307
    17.2.3DivisionandComparison309
    17.2.4Shifting315
    17.2.5StringConversions319
    FurtherReading321
    Exercises322

    18Arbitrary-PrecisionArithmetic323
    18.1Interface323
    18.2Example:ACalculator327
    18.3Implementation334
    18.3.1NegationandMultiplication337
    18.3.2AdditionandSubtraction338
    18.3.3Division342
    18.3.4Exponentiation343
    18.3.5Comparisons346
    18.3.6ConvenienceFunctions347
    18.3.7Shifting349
    18.3.8StringandIntegerConversions350
    FurtherReading353
    Exercises354

    19Multiple-PrecisionArithmetic357
    19.1Interface358
    19.2Example:AnotherCalculator365
    19.3Implementation373
    19.3.1Conversions377
    19.3.2UnsignedArithmetic380
    19.3.3SignedArithmetic383
    19.3.4ConvenienceFunctions388
    19.3.5ComparisonsandLogicalOperations395
    19.3.6StringConversions399
    FurtherReading402
    Exercises402

    20Threads405
    20.1Interfaces408
    20.1.1Threads409
    20.1.2GeneralSemaphores413
    20.1.3SynchronousCommunicationChannels417
    20.2Examples418
    20.2.1SortingConcurrently418
    20.2.2CriticalRegions423
    20.2.3GeneratingPrimes426
    20.3Implementations431
    20.3.1SynchronousCommunicationChannels431
    20.3.2Threads434
    20.3.3ThreadCreationandContext-Switching446
    20.3.4Preemption454
    20.3.5GeneralSemaphores457
    20.3.6Context-SwitchingontheMIPSandALPHA459
    FurtherReading463
    Exercises465
    InterfaceSummary469
    Bibliography497
    Index505
查看详情
系列丛书 / 更多
C语言接口与实现
机器学习实战
[美]Peter Harrington 著;李锐、李鹏、曲亚东 译
C语言接口与实现
图灵程序设计丛书:Python基础教程
[挪威]Magnus Lie Hetland 著;司维、曾军崴、谭颖华 译
C语言接口与实现
JavaScript高级程序设计(第3版)
[美]Nicholas C.Zakas 著;李松峰、曹力 译
C语言接口与实现
Python编程:从入门到实践
[美]埃里克·马瑟斯(Eric Matthes) 著;袁国忠 译
C语言接口与实现
R语言实战(第2版)
[美]卡巴科弗(Robert I. Kabacoff) 著;王小宁、刘撷芯、黄俊文 译
C语言接口与实现
大数据:互联网大规模数据挖掘与分布式处理
[美]Anand、[美]Jeffrey David Ullman 著;王斌 译
C语言接口与实现
算法(第4版)
[美]Robert、[美]Kevin Wayne 著;谢路云 译
C语言接口与实现
Spark快速大数据分析
[美]卡劳(Holden Karau)、[美]肯维尼斯科(Andy Konwinski)、[美]温德尔(Patrick Wendell)、[加拿大]扎哈里亚(Matei Zaharia) 著;王道远 译
C语言接口与实现
MySQL必知必会
[英]福塔(Ben Forta) 著;刘晓霞、钟鸣 译
C语言接口与实现
图解HTTP
[日]上野·宣 著;于均良 译
C语言接口与实现
Objective-C基础教程 第2版
[美]Scott、[美]Waqar、[美]Mark Dalrymple 著;周庆成 译
C语言接口与实现
算法图解
袁国忠 译
相关图书 / 更多
C语言接口与实现
C语言程序设计
吕爱华主编
C语言接口与实现
C语言程序设计
梁颖红
C语言接口与实现
C语言程序设计项目双语教程
刘倍雄 编;何玲;罗欢
C语言接口与实现
C语言程序设计问题求解与学习指导
郑晓健
C语言接口与实现
C语言程序设计(第五版)
恰汗·合孜尔
C语言接口与实现
C语言程序设计能力教程实训指导与习题解答(第2版)
吴昂、柏万里 编
C语言接口与实现
C语言程序设计
李柳柏 编;曾俊
C语言接口与实现
C语言程序设计实用教程/现代学徒制试点创新成果系列教材
张叶茂刘红艳陈新菡 著
C语言接口与实现
C语言程序设计面向“新工科”人才培养(微课视频版)
徐新爱;朱莹婷;卢昕;秦春影;黄水发;王丽娜
C语言接口与实现
C语言程序设计——以机器博弈为例(微课版)
邱虹坤;王亚杰;孙玉霞;刘成;王晓岩;郭建新;杨煦
C语言接口与实现
C语言程序设计教程
万家华 陈家俊 吴建国
C语言接口与实现
C语言程序设计实验指导与习题集
李聪朱倩张晓芳 主编
您可能感兴趣 / 更多
C语言接口与实现
宇宙视觉史:从宇宙大爆炸到时间的尽头
[美]查尔斯·刘 著;高爽 译者;[美]马克西姆· 马洛维奇科 绘;未读 出品
C语言接口与实现
写出我心 普通人如何通过写作表达自己(平装本)
[美]娜塔莉·戈德堡(Natalie Goldberg)
C语言接口与实现
写出我心3 写作疗愈的真正秘密
[美]娜塔莉·戈德堡(Natalie Goldberg)
C语言接口与实现
神套路:为什么我们总被带节奏(狂热与网红时代醍醐灌顶之作,教给普通人安身立命的不二法门!)
[美]阿里·阿莫萨维 著;[哥伦比亚]亚历杭德罗·希拉尔多 绘
C语言接口与实现
阿伦森自传
[美]埃利奥特·阿伦森(Elliot Aronson) 著;沈捷 译;湛庐文化 出品
C语言接口与实现
街头官僚:公共服务中的个人困境
[美]迈克尔·李普斯基(Michael Lipsky)
C语言接口与实现
史前至蒙古帝国时期的内欧亚大陆史
[美]大卫·克里斯蒂安 著;潘玲 译;杨建华 校
C语言接口与实现
意大利文艺复兴新艺术史
[美]迈克尔·韦恩·科尔 著;[美]斯蒂芬·J·坎贝尔;邵亦杨
C语言接口与实现
老人与海 彩图注音版 一二三四年级5-6-7-8-9岁小学生课外阅读经典 儿童文学无障碍有声伴读世界名著童话故事
[美]海明威
C语言接口与实现
养育的觉醒:全面激发孩子自驱力,教你如何心平气和做妈妈
[美]凯文·莱曼 著;唐晓璐 译;斯坦威 出品
C语言接口与实现
自律我也能做到(全9册)
[美]康妮·科维尔·米勒 著;[阿根廷]维多利亚·阿萨纳利 绘
C语言接口与实现
你在等什么?
[美]斯科特·明钦 著;[中]易万 译;[美]马特 ·斐兰 绘