返回首页
苏宁会员
购物车 0
易付宝
手机苏宁

服务体验

店铺评分与同行业相比

用户评价:----

物流时效:----

售后服务:----

  • 服务承诺: 正品保障
  • 公司名称:
  • 所 在 地:

  • 正版 21世纪C语言(影印版) (美)克莱门斯 东南大学 9787564142056
  • 新华书店旗下自营,正版全新
    • 作者: (美)克莱门斯著 | (美)克莱门斯编 | (美)克莱门斯译 | (美)克莱门斯绘
    • 出版社: 东南大学出版社
    • 出版时间:2013-05-01
    送至
  • 由""直接销售和发货,并提供售后服务
  • 加入购物车 购买电子书
    服务

    看了又看

    商品预定流程:

    查看大图
    /
    ×

    苏宁商家

    商家:
    美阅书店
    联系:
    • 商品

    • 服务

    • 物流

    搜索店内商品

    商品分类

    商品参数
    • 作者: (美)克莱门斯著| (美)克莱门斯编| (美)克莱门斯译| (美)克莱门斯绘
    • 出版社:东南大学出版社
    • 出版时间:2013-05-01
    • 版次:1
    • 印次:1
    • 印刷时间:2013-05-01
    • 开本:16开
    • ISBN:9787564142056
    • 版权提供:东南大学出版社
    • 作者:(美)克莱门斯
    • 著:(美)克莱门斯
    • 装帧:暂无
    • 印次:1
    • 定价:56.00
    • ISBN:9787564142056
    • 出版社:东南大学
    • 开本:16开
    • 印刷时间:2013-05-01
    • 语种:暂无
    • 出版时间:2013-05-01
    • 页数:暂无
    • 外部编号:2596127
    • 版次:1
    • 成品尺寸:暂无

    Preface
    Part I.The Environment
    1.SetYourself Up for Easy Compilation
    Use a Package Manager
    Compiling C with Windows
    POSIX for Windows
    Compiling C with POSIX
    Compiling C Without POSIX
    Which Way to the Library?
    A Few of My Favorite Flags
    Paths
    Runtime Linking
    Using Makefiles
    Setting Variables
    The Rules
    Using Libraries from Source
    Using Libraries from Source(Even if Your Sysadmin Doesn’t Want You To)
    Compiling C Programs via Here Document
    Include Header Files from the Command Line
    The Unified Header
    Here Documents
    Compiling from stdin
    2.Debug,Test,Document
    Using a Debugger
    GDB Variables
    Print Your Structures
    Using Valgrind to Check for Errors
    Unit Testing
    Using a Program as a Library
    Coverage
    Interweaving Documentation
    Doxygen
    Literate Code with CW’EB
    Error Checking
    What Is the User’s Involvement in the Error?
    The Context in Which the User Is Working
    How Should the Error Indication Be Returned?
    3.PackagingYourProject
    The Shell
    Replacing Shell Commands with Their Outputs
    Use the Shell’s for Loops to Operate on a Set of Files
    TestforFiles
    fc
    Makefiles VS.Shell Scripts
    Packaging Your Code with Autotools
    An Autotools Demo
    Describing the Makefile with makefile.am
    The configure Script
    4.VersionControI
    Changes via diff
    Git’s Objects
    The Stash
    Trees and Their Branches
    Merging
    The Rebase
    Remote Repositories
    5.PlayingNicewithOthers
    The Process
    Writing to Be Read by Nonnatives
    The Wrapper Function
    Smuggling Data Structures Across the Border
    Linking
    Python Host
    Compiling and Linking
    The Conditional Subdirectory for Automake
    Distutils Backed with Autotools
    Part II.The Language
    6.YOurPaIthePointer
    Automatic,Static,and Manual Memory
    Persistent State Variables
    Pointers Without malloc
    Structures Get Copied,Arrays Get Aliased
    malloc and Memory—Twiddling
    The Fault Is in Our Stars
    All the Pointer Arithmetic You Need to Know
    7.CSyntaxYouCanIgnore
    Don’t Bother Explicitly Returning from main
    Let Declarations Flow
    Set Array Size at Runtime
    Cast Less
    Enums and Strings
    Labels,gotos,switches,and breaks
    gotO Considered
    switch
    Deprecate Float
    8.Obstaclesand Oppounity
    Cultivate Robust and Flourishing Macros
    Preprocessor Tricks
    Linkage with static and extem
    Declare Externally Linked Elements Only in Header Files
    The const Keyword
    Noun—Adjective Form
    Tension
    Depth
    The char const Issue
    9.Text
    Making String Handling Less Painful with asprintf
    Security
    Constant Strings
    Extending Strings with asprintf
    APean to strtok
    Unicode
    The Encoding for C Code
    Unicode Libraries
    The Sample Code
    10.Better Structures
    Compound Literals
    Initialization via Compound Literals
    Variadic Macros
    Safely Terminated Lists
    Foreach
    Vectorize a Function
    Designated Initializers
    Initialize Arrays and Structs with Zeros
    Typedefs Save the Day
    A StyleNote
    Return Multiple Items from a Function
    Reporting Errors
    Flexible Function Inputs
    Declare Your Function.as printf-Style
    Optional and Named Arguments
    Polishing a Dull Function
    The Void Pointer and the Structures It Points To
    Functions with Generic Inputs
    Generic Structures
    11.Object-Oriented Programmingin C
    What You Don’t Get(and Why You Won’t Miss It)
    Scope
    Overloaded with Operator Overloading
    Extending Structures and Dictionaries
    Extending a Structure
    Implementing a Dictionary
    Base Your Code on Pointers to Objects
    Functions in Your Structs
    Count References,
    Example:A Substring Object
    An Agent—Based Model of Group Formation
    12.Libraries
    GLib
    POS.IX
    Using mmap for Gigantic Data Sets
    Easy Threading with Pthreads
    The GNU Scientific Library
    SQLite
    The Queries
    libxml and cURL
    Epilogue
    Glossary
    Bibliography
    Index

    BenKlemens为布鲁金斯学会、世界银行、美国国家心理卫生研究所和美国政府编写统计分析和集约计算模型。他同时也为布鲁金斯学会和自由软件基金会工作来确保软件作者有权使用他们编写的软件。

    是否你的C语言编程环境被限制在VI和CC上?是否C语言的内存管理机制依然像20世纪90年代那样困扰你?BENKLEMENS提出了这些常见的问题,并且展示了最新的工具如何使得C语言编程变得简单——能够帮助你调试、跟踪内存泄露、组织编译过程和管理源代码版本。 《21世纪C语言(影印版)》的作者是克莱门斯。

    售后保障

    最近浏览

    猜你喜欢

    该商品在当前城市正在进行 促销

    注:参加抢购将不再享受其他优惠活动

    x
    您已成功将商品加入收藏夹

    查看我的收藏夹

    确定

    非常抱歉,您前期未参加预订活动,
    无法支付尾款哦!

    关闭

    抱歉,您暂无任性付资格

    此时为正式期SUPER会员专享抢购期,普通会员暂不可抢购