登入帳戶  | 訂單查詢  | 購物車/收銀台(0) | 在線留言板  | 付款方式  | 聯絡我們  | 運費計算  | 幫助中心 |  加入書簽
會員登入   新用戶註冊
HOME新書上架暢銷書架好書推介特價區會員書架精選月讀2023年度TOP分類閱讀雜誌 香港/國際用戶
最新/最熱/最齊全的簡體書網 品種:超過100萬種書,正品正价,放心網購,悭钱省心 送貨:速遞 / 物流,時效:出貨後2-4日

2024年11月出版新書

2024年10月出版新書

2024年09月出版新書

2024年08月出版新書

2024年07月出版新書

2024年06月出版新書

2024年05月出版新書

2024年04月出版新書

2024年03月出版新書

2024年02月出版新書

2024年01月出版新書

2023年12月出版新書

2023年11月出版新書

2023年10月出版新書

『簡體書』Scala编程 第2版(影印版)

書城自編碼: 2667787
分類: 簡體書→大陸圖書→計算機/網絡程序設計
作 者: 万普勒 (Dean Wampler),佩恩 (Alex Pa
國際書號(ISBN): 9787564159221
出版社: 东南大学出版社
出版日期: 2015-08-01

頁數/字數: 554页
書度/開本: 16开 釘裝: 平装

售價:NT$ 730

我要買

share:

** 我創建的書架 **
未登入.



新書推薦:
大处着眼:持久战与《论持久战》
《 大处着眼:持久战与《论持久战》 》

售價:NT$ 390.0
人工智能与大数据:采煤机智能制造
《 人工智能与大数据:采煤机智能制造 》

售價:NT$ 440.0
未来漫游指南:昨日科技与人类未来
《 未来漫游指南:昨日科技与人类未来 》

售價:NT$ 445.0
新民说·逝去的盛景:宋朝商业文明的兴盛与落幕(上下册)
《 新民说·逝去的盛景:宋朝商业文明的兴盛与落幕(上下册) 》

售價:NT$ 790.0
我从何来:自我的心理学探问
《 我从何来:自我的心理学探问 》

售價:NT$ 545.0
失败:1891—1900 清王朝的变革、战争与排外
《 失败:1891—1900 清王朝的变革、战争与排外 》

售價:NT$ 390.0
送你一匹马(“我不求深刻,只求简单。”看三毛如何拒绝内耗,为自己而活)
《 送你一匹马(“我不求深刻,只求简单。”看三毛如何拒绝内耗,为自己而活) 》

售價:NT$ 295.0
秦汉史讲义
《 秦汉史讲义 》

售價:NT$ 690.0

建議一齊購買:

+

NT$ 432
《 学习Scala(影印版) 》
+

NT$ 623
《 Scala 并发编程 》
+

NT$ 4284
《 Programming in Scala: A Comprehensive Step-by-Step Guide 》
+

NT$ 490
《 深入理解Scala 》
內容簡介:
Scala这种JVM语言通过新式对象模型、函数式编 程和高级类型系统带来的优势提升了语言的运行效率 。这本综合性的书籍——万普勒、佩恩编*的 《Scala编程第2版影印版英文版》包含了大量的 程序代码示例,向你展示如何在开发中利用语言和生 态系统而立刻变得*具有效率,同时解释了对于当今 支持并发和分布式的高度可扩展的、以数据为中心的 应用程序而言,Scala为什么是一个理想选择。
第2版包含了*新的语言特性,加人了关于模式 匹配、推导和高级函数式编程的新章节。同时你也可 以学习到Scala的命令行工具、第三方工具、库、面 向编辑器和集成开发环境的语言感知插件。这本书是 初级和高级Scala开发人员的理想选择。
这本***的数据科学书籍中的示例代码在一 个公共的GitHub库中得到维护。采用Turnkey Linux 虚拟机可以很容易地访问代码,这有利于基于 IPython Notebooks易用集合的交互式学习
目錄
Foreword
Preface
1. Zero to Sixty: Introducing Scala
Why Scala?
The Seductions of Scala
What About Java 8?
Installing Scala
Using SBT
Running the Scala Command-Line Tools
Running the Scala REPL in IDEs
A Taste of Scala
A Taste of Concurrency
Recap and What''s Next
2. Type Less, Do More
Semicolons
Variable Declarations
Ranges
Partial Functions
Method Declarations
Method Default and Named Arguments
Methods with Multiple Argument Lists
A Taste of Futures
Nesting Method Definitions and Recursion
Inferring Type Information
Reserved Words
Literal Values
Integer Literals
Floating-Point Literals
Boolean Literals
Character Literals
String Literals
Symbol Literals
Function Literals
Tuple Literals
Option, Some, and None: Avoiding nulls
Sealed Class Hierarchies
Organizing Code in Files and Namespaces
Importing Types and Their Members
Imports Are Relative
Package Objects
Abstract Types Versus Parameterized Types
Recap and What''s Next
3. Rounding 0ut the Basics
Operator Overloading?
Syntactic Sugar
Methods with Empty Argument Lists
Precedence Rules
Domain-Specific Languages
Scala if Statements
Scala for Comprehensions
for Loops
Generator Expressions
Guards: Filtering Values
Yielding
Expanded Scope and Value Definitions
Other Looping Constructs
Scala while Loops
Scala do-while Loops
Conditional Operators
Using try, catch, and finally Clauses
Call by Name, Call by Value
lazy val
Enumerations
Interpolated Strings
Traits: Interfaces and "Mixins" in Scala
Recap and What''s Next
4. Pattern Matching
5. Implicits
6. Functional Programming in Scala
7. for Comprehensions in Depth
8. Object-Oriented Programming in Scala
9. Traits
10. The Scala Object System, Part Ⅰ
11. The Scala Object System, Part Ⅱ.
12. The Scala Collections Library
13. Visibility Rules
14. Scala''s Type System, Part Ⅰ
15. Scala''s Type System, Part Ⅱ
16. Advanced Functional Programming
17. Tools for Concurrency
18. Scala for Big Data
19. Dynamic Invocation in Scala.
20. Domain-Specific Languages in Scala
21. Scala Tools and Libraries.
22. Java Interoperability.
23. Application Design
24. Metaprogramming: Macros and Reflection.
A. References
Index

 

 

書城介紹  | 合作申請 | 索要書目  | 新手入門 | 聯絡方式  | 幫助中心 | 找書說明  | 送貨方式 | 付款方式 台灣用户 | 香港/海外用户
megBook.com.tw
Copyright (C) 2013 - 2024 (香港)大書城有限公司 All Rights Reserved.