A Philosophy of Software Design 2024 pdf epub mobi 電子書 下載


A Philosophy of Software Design

簡體網頁||繁體網頁

A Philosophy of Software Design pdf epub mobi 著者簡介

John Ousterhout is the Bosack Lerner Professor of Computer Science at Stanford University. His current research focuses on new software stack layers to allow datacenter applications to take advantage of communication and storage technologies with microsecond-scale latencies. Ousterhout's prior positions include 14 years in industry, where he founded two companies (Scriptics and Electric Cloud), preceded by 14 years as Professor of Computer Science at U.C. Berkeley. He is the creator of the Tcl scripting language and is also well known for his work in distributed operating systems and storage systems. Ousterhout received a BS degree in Physics from Yale University and a PhD in Computer Science from Carnegie Mellon University. He is a member of the National Academy of Engineering and has received numerous awards, including the ACM Software System Award, the ACM Grace Murray Hopper Award, the National Science Foundation Presidential Young Investigator Award, and the U.C. Berkeley Distinguished Teaching Award.


A Philosophy of Software Design pdf epub mobi 圖書描述

This book addresses the topic of software design: how to decompose complex software systems into modules (such as classes and methods) that can be implemented relatively independently. The book first introduces the fundamental problem in software design, which is managing complexity. It then discusses philosophical issues about how to approach the software design process, and it presents a collection of design principles to apply during software design. The book also introduces a set of red flags that identify design problems. You can apply the ideas in this book to minimize the complexity of large software systems, so that you can write software more quickly

A Philosophy of Software Design 2024 pdf epub mobi 電子書 下載

A Philosophy of Software Design pdf epub mobi 圖書目錄




點擊這裡下載
    


想要找書就要到 本本書屋
立刻按 ctrl+D收藏本頁
你會得到大驚喜!!

發表於2024-06-26

A Philosophy of Software Design 2024 pdf epub mobi 電子書 下載

A Philosophy of Software Design 2024 pdf epub mobi 電子書 下載

A Philosophy of Software Design 2024 pdf epub mobi 電子書 下載



喜欢 A Philosophy of Software Design 電子書 的读者还喜欢


A Philosophy of Software Design pdf epub mobi 讀後感

評分

最近剛讀完的一本書,書名裏麵帶有philosophy,其實大可不必驚慌,這本書的核心就是關於軟件設計中的復雜度。 作者開門見山提齣瞭本書的兩個目標,一個是講述復雜度的各種特點,另外進一步的目標就是介紹減小軟件設計復雜度的各種方法和技巧。 這本書頁數不多,一個周末就讀完...

評分

減少軟件復雜度是本書的主題,為此作者提齣瞭模塊深度的概念,並從該角度對編程中的種種進行瞭分析。 第四章 Modules Should Be Deep是比較核心的一個章節,我把它的主要內容翻譯成瞭中文,文章是《 軟件設計之Deep Module(深模塊)》,歡迎閱覽和指正。 有人說書中不少內容是...  

評分

減少軟件復雜度是本書的主題,為此作者提齣瞭模塊深度的概念,並從該角度對編程中的種種進行瞭分析。 第四章 Modules Should Be Deep是比較核心的一個章節,我把它的主要內容翻譯成瞭中文,文章是《 軟件設計之Deep Module(深模塊)》,歡迎閱覽和指正。 有人說書中不少內容是...  

評分

John Ousterhout, the author of this book who has built a number of influential systems (Tcl / Tk, Raft, RAMcloud, etc), has ever gave an impressive talk at Google which covers the same theme. In that talk, he asked the audience, "If you had to pick one idea...  

評分

最近剛讀完的一本書,書名裏麵帶有philosophy,其實大可不必驚慌,這本書的核心就是關於軟件設計中的復雜度。 作者開門見山提齣瞭本書的兩個目標,一個是講述復雜度的各種特點,另外進一步的目標就是介紹減小軟件設計復雜度的各種方法和技巧。 這本書頁數不多,一個周末就讀完...

類似圖書 點擊查看全場最低價
出版者:Yaknyam Press
作者:John Ousterhout
出品人:
頁數:190
譯者:
出版時間:2018-4-6
價格:GBP 14.21
裝幀:Paperback
isbn號碼:9781732102200
叢書系列:

圖書標籤: 軟件工程  軟件架構  計算機  軟件設計  編程  程序設計  架構師  programming   


A Philosophy of Software Design 2024 pdf epub mobi 電子書 下載
想要找書就要到 本本書屋
立刻按 ctrl+D收藏本頁
你會得到大驚喜!!

A Philosophy of Software Design pdf epub mobi 用戶評價

評分

非常好的小書 Create Deep module!! Write comments for abstraction and precision!! More to update

評分

說到底就一句話,多設計

評分

降低復雜度,less is more

評分

重點看瞭前麵10章,特彆是關於軟件復雜性方麵。感受比較深的幾點是: 1.對抗復雜性的兩個方法:代碼簡潔和封裝。 keep these in mind when programming. 2. 盡量戰略性編程,而不是戰術性編程 3. module設計要有深度, 接口少而簡單。less is more。 讓復雜性下沉 4. 盡量減少module之間的依賴關係 5. 不同層,不同抽象。 Design it twice 6. 注釋應該包含設計者不能在代碼(接口)中錶達齣來的信息。代碼和注釋是寫給彆人看的 7. Agile推崇的漸進式開發的應該是抽象,而不是功能

評分

重點看瞭前麵10章,特彆是關於軟件復雜性方麵。感受比較深的幾點是: 1.對抗復雜性的兩個方法:代碼簡潔和封裝。 keep these in mind when programming. 2. 盡量戰略性編程,而不是戰術性編程 3. module設計要有深度, 接口少而簡單。less is more。 讓復雜性下沉 4. 盡量減少module之間的依賴關係 5. 不同層,不同抽象。 Design it twice 6. 注釋應該包含設計者不能在代碼(接口)中錶達齣來的信息。代碼和注釋是寫給彆人看的 7. Agile推崇的漸進式開發的應該是抽象,而不是功能

A Philosophy of Software Design 2024 pdf epub mobi 電子書 下載


分享鏈接





相關圖書




本站所有內容均為互聯網搜索引擎提供的公開搜索信息,本站不存儲任何數據與內容,任何內容與數據均與本站無關,如有需要請聯繫相關搜索引擎包括但不限於百度google,bing,sogou

友情鏈接

© 2024 onlinetoolsland.com All Rights Reserved. 本本書屋 版權所有