登入帳戶  | 訂單查詢  | 購物車/收銀台( 0 ) | 在線留言板  | 付款方式  | 運費計算  | 聯絡我們  | 幫助中心 |  加入書簽
會員登入 新用戶登記
HOME新書上架暢銷書架好書推介特價區會員書架精選月讀2023年度TOP分類瀏覽雜誌 臺灣用戶
品種:超過100萬種各類書籍/音像和精品,正品正價,放心網購,悭钱省心 服務:香港台灣澳門海外 送貨:速遞郵局服務站

新書上架簡體書 繁體書
暢銷書架簡體書 繁體書
好書推介簡體書 繁體書

五月出版:大陸書 台灣書
四月出版:大陸書 台灣書
三月出版:大陸書 台灣書
二月出版:大陸書 台灣書
一月出版:大陸書 台灣書
12月出版:大陸書 台灣書
11月出版:大陸書 台灣書
十月出版:大陸書 台灣書
九月出版:大陸書 台灣書
八月出版:大陸書 台灣書
七月出版:大陸書 台灣書
六月出版:大陸書 台灣書
五月出版:大陸書 台灣書
四月出版:大陸書 台灣書
三月出版:大陸書 台灣書

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

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

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

售價:HK$ 162.8

我要買

 

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


新書推薦:
福柯最后十年
《 福柯最后十年 》

售價:HK$ 124.2
王阳明心学(新版)
《 王阳明心学(新版) 》

售價:HK$ 78.2
就这样成了老板:关于创业的真相与启示(写给“白手起家”创业者们的枕边书)
《 就这样成了老板:关于创业的真相与启示(写给“白手起家”创业者们的枕边书) 》

售價:HK$ 79.4
中国历史常识(全新修订,全书插图本)
《 中国历史常识(全新修订,全书插图本) 》

售價:HK$ 67.9
对你有企图
《 对你有企图 》

售價:HK$ 53.8
多代社会
《 多代社会 》

售價:HK$ 86.3
我们内心的崩裂:霍妮谈这个时代的基本焦虑与自我挣扎
《 我们内心的崩裂:霍妮谈这个时代的基本焦虑与自我挣扎 》

售價:HK$ 62.1
好望角丛书·辉煌与苦难:伊拉克6000年
《 好望角丛书·辉煌与苦难:伊拉克6000年 》

售價:HK$ 147.2

 

建議一齊購買:

+

HK$ 96.2
《 学习Scala(影印版) 》
+

HK$ 138.8
《 Scala 并发编程 》
+

HK$ 1496.0
《 Programming in Scala: A Comprehensive Step-by-Step Guide 》
+

HK$ 109.2
《 深入理解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.hk
Copyright © 2013 - 2024 (香港)大書城有限公司  All Rights Reserved.