You’ve Recently Viewed

{{ badge.badge_name }}
{{ item.brand_name }} {{ item.group_num + __(" Options") }}
{{ item.item_title }}
{{ item.rank.category_name }} {{ $isZh ? ' ' + item.rank.rank_name +' No.'+ item.rank.rank_num : '#'+item.rank.rank_num + ' ' + item.rank.rank_name }} {{ item.rank.category_name }}
{{ formatNumber(visualViewRate(item)) }} ({{ item.comment.comment_count > 0 ? item.comment.comment_count : __("Be the first!") }})
· {{ viewedItemSaleInfo(item) }}

{{ currency }}{{ priceFormat(item.price.shop_price) }} {{ currency }}{{ priceFormat(item.price.del_price) }}

{{ item.bundle }}
Added to cart

Change Your Zip Code

Inventory information and delivery speeds may vary for different locations.

Location History

{{email ? __('Got it!') : __('Restock Alert')}}

We will notify you by email when the item back in stock.

Cancel
Yami
Jingdong book

深入理解Scala

{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }}
{{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ item.valid_price }}
{{ buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start") }}
Details
Full product details
Content Description

Scala是一种多范式的编程语言,它既支持面向对象编程,也支持函数式编程的各种特性。
《深入理解Scala》深入探讨了Scala里几个较为复杂的领域,包括类型系统的高阶内容、隐式转换、特质的组合技巧、集合、Actor、函数式编程的范畴论等,而且不是干巴巴地讲述语言和库的概念。《深入理解Scala》充满各种实用的建议和佳实践,可以来帮助读者学习怎样把Scala里较少被掌握的部分应用到工作中。
《深入理解Scala》不是Scala的入门级教程,而是适合有经验的Scala程序员向专家水平进阶的参考读物。《深入理解Scala》适合想要了解Scala语言的底层机制和技术细节的读者阅读参考。
Author Description

Josh Suereth,是Typesafe公司的一名软件工程师,它是Scala的Committer之一,也是scala-tools.org的维护者。
Comments

★“权威并且易于理解”。
——Martin Odersky Scala之父

★“带你深入Scala的内部工作机制”。
——John C Tyler PROS Pricing

★“目前为止,我在技术书里读到过的最好的示例”。
——Eric Weinberg Wagger Designs

★“一本开拓眼界的书,现在我对Scala知其所以然了”。
——John Criffin Hibernate Search in Action合著者
Catalogue

第1章 Scala——一种混合式编程语言
1.1 Scala的设计哲学
1.2 当函数式编程遇见面向对象
1.2.1 重新发现函数式概念
1.2.2 Google Collections中的函数式概念
1.3 静态类型和表达力
1.3.1 换边
1.3.2 类型推断
1.3.3 抛开语法1
1.3.4 隐式转换概念早已有之
1.3.5 使用Scala的implicit关键字
1.4 与JVM的缝集成
1.4.1 Scala调用Java
1.4.2 Java调用Scala
1.4.3 JVM的优越性
1.5 总结

第2章 核心规则
2.1 学习使用Scala交互模式(REPL)
2.1.1 实验驱动开发
2.1.2 绕过积极(eaglerly)解析
2.1.3 法表现的语言特性
2.2 优先采用面向表达式编程
2.2.1 方法和模式匹配
2.2.2 可变性
2.3 优先选择不变性
2.3.1 判等
2.3.2 并发
2.4 用None不用null
2.5 多态场景下的判等
2.5.1 例子:时间线库
2.5.2 多态判等实现
2.6 总结

第3章 来点样式-编码规范
3.1 避免照搬其他语言的编码规范
3.2 空悬的操作符和括号表达式
3.3 使用有意义的命名
3.3.1 命名时避免$符号
3.3.2 使用命名和默认参数
3.4 总是标记覆盖(overriden)方法
3.5 对期望的优化进行标注
3.6 总结

第4章 面向对象编程
4.1 限制在对象或特质的body里初始化逻辑的代码
4.1.1 延迟构造
4.1 2多重继承又来了
4.2 为特质的抽象方法提供空实现
4.3 组合可以包含继承
4.3.1 通过继承组合成员
4.3.2 经典构造器withatwist
4.3.3 总结
4.4 提升抽象接口为独立特质
4.4.1 和接口交互
4.4.2 从历史中吸取教训
4.4.3 结论
4.5 public接口应当提供返回值
4.6 总结

第5章 利用隐式转换写更有表达力
5.1 介绍隐式转换系统
5.1.1 题外话:标识符
5.1.2 作用域和绑定
5.1.3 隐式解析
5.1.4 通过类型参数获得隐式作用域
5.1.5 通过嵌套获得隐式作用域
5.2 隐式视图:强化已存在的类
5.3 隐式参数结合默认参数
5.4 限制隐式系统的作用域
5.4.1 为导入创建隐式转换
5.4.2 没有导入税(importtax)的隐式转换
5.5 总结1

第6章 类型系统
6.1 类型
6.1.1 类型和路径
6.1.2 type关键字
6.1.3 结构化类型
6.2 类型约束130
6.3 类型参数和高阶类型(Higher Kinded Types)
6.3.1 类型参数约束
6.3.2 高阶类型
6.4 型变(Variance)
6.5 存在类型
6.6 总结

第7章 隐式转换和类型系统结合应用
7.1 上下文边界和视图边界
7.2 用隐式转换来捕捉类型
7.2.1 捕获类型用于运行时计算(capturing types for runtime evaluation)
7.2.2 使用Manifest
7.2.3 捕捉类型约束
7.2.4 特定方法(Specialized method)
7.3 使用类型类(type class)
7.3.1 作为类型类的FileLike
7.3.2 类型类的好处
7.4 用类型系统实现条件执行
7.4.1 异构类型List
7.4.2 IndexedView
7.5 总结

第8章 Scala集合库
8.1 使用正确的集合类型
8.1.1 集合库继承层次
8.1.2 Traversable
8.1.3 Iterable
8.1.4 Seq
8.1.5 LinearSeq
8.1.6 IndexedSeq
8.1.7 Set
8.1.8 Map
8.2 不可变集合
8.2.1 Vector
8.2.2 List
8.2.3 Stream(流)
8.3 可变集合
8.3.1 ArrayBuffer
8.3.2 混入修改事件发布特质
8.3.3 混入串行化特质
8.4 用视图和并行集合来改变计算策略
8.4.1 视图
8.4.2 并行集合
8.5 编写能处理所有集合类型的方法
8.6 总结

第9章 Actors
9.1 使用Actor的时机
9.2 使用有类型的、透明的引用
9.3 把故障限制在故障区里
9.3.1 发散搜集故障区
9.3.2 通常的故障处理实践
9.4 利用排期区控制负载
9.5 动态Actor拓扑
9.6 总结

第10章 Scala和Java集成
10.1 Scala/Java不匹配
10.1.1 基础类型自动打包的差异
10.1.2 可见性的差异
10.1.3 不可表达的语言特性
10.2 谨慎使用隐式转换
10.2.1 对象标识和判等
10.2.2 链式隐式转换
10.3 小心Java序列化
10.4 注解你的注解
10.4.1 注解目标
10.4.2 Scala和静态属性
10.5 总结

第11章 函数式编程
11.1 计算机科学领域的范畴论
11.2 函子(Functor),Monad及它们与范畴的关系
11.3 咖喱化和可应用风格(Applicative style)
11.3.1 咖喱化
11.3.2 可应用风格
11.4 用作工作流的单子
11.5 总结

Specifications

Brand Jingdong book
Brand Origin China

Disclaimer

Product packaging, specifications and price are subject to change without notice. All information about the products on our website is provided for information purposes only. Please always read labels, warnings and directions provided with the product before use.

View Full Terms of Use {{ itemAct.title || '' }}

Bundle & Combo

Similar Items

Related Search

{{ item.userActionNumberDesc }}
Yami wechat-share qr code

Scan to Share

深入理解Scala

{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }}
{{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }} {{ itemCurrency }}{{ item.invalid_price }} {{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }}
Price:
{{ itemCurrency }}{{ priceFormat(item.member_price) }}
Buy at VVIP Price
Learn more
Sale ends in
Sale will starts after Sale ends in
{{ getSeckillDesc(item.seckill_data) }}
{{ __("Pay with Gift Card to get sale price: :itemCurrency:price", {'itemCurrency': itemCurrency, 'price': (item.giftcard_price ? priceFormat(item.giftcard_price) : '0.00')}) }} ({{ itemCurrency }}{{ priceFormat(item.giftcard_price / item.bundle_specification) }}/{{ item.unit }}) Details
{{ $isZh ? coupon.coupon_name_sub : coupon.coupon_ename_sub | formatCurrency }}

Currently unavailable.

We don't know when or if this item will be back in stock.

Unavailable in your area.
Sold Out
Sold by JD@CHINA
Ship to
{{ __("Ship to United States only") }}
Free shipping over 69
Genuine guarantee
{{ quantity }} {{ instockMsg }} {{ limitText }}
{{ buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start") }}
Best before

Frequently Bought Together

Total ${{ priceFormat(totalPrice) }}

Added to Cart

Keep Shopping

More to Consider

{{ item.brand_name }}

{{ item.item_name }}

{{ item.currency }}{{ item.market_price }}

{{ item.currency }}{{ item.unit_price }}

{{ item.currency }}{{ item.unit_price }}

Coupons

{{ coupon.coupon_name_new | formatCurrency }}
Clip Clipped Over
{{ getCouponDescStr(coupon) }}
{{ coupon.use_time_desc }}
Expires soon {{ formatTime(coupon.use_end_time) }}

Share this item with friends

Cancel

Yami Gift Card

Get this exclusive deal when paying with gift card

Terms and Conditions

Gift card deals are special offers for selected products;

The gift card deals will automatically be activated if a customer uses gift card balance at check out and the balance is sufficient to pay for the total price of the shopping cart products with gift card deals;

You will not be able to activate the gift card deals if you choose other payment methods besides gift card. The products will be purchased at their normal prices;

If your account balance is not enough to pay for the products with gift card deals, you can choose to reload your gift card balance by clicking on the Reload button at either shopping cart page or check out page;

Products that have gift card deals can be recognized by a special symbol showing 'GC Deal';

For any additional questions or concerns, please contact our customer service;

Yami reserves the right of final interpretation.

Sold by Yami

Service Guarantee

Yami Free shipping from the US over $49
Yami Easy Returns

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

Yami is committed to provide our customers with a peace of mind when purchasing from us. Most items shipped from Yami.com can be returned within 30 days of receipt of shipment (For Food, Beverages, Snacks, Dry Goods, Health supplements, Fresh Grocery and Perishables Goods, within 7 days of receipt of shipment due to damages or quality issues; To ensure that every customer receives safe and high-quality products, we do not provide refunds or returns for beauty products once they have been opened or used, except in the case of quality issues; Some products may have different policies or requirements associated with them, please see below for products under special categories, or contact Yami Customer Service for further assistance).
Thank you for your understanding and support.

Learn More

Sold by Yami

Terms and Conditions of Yami E-Gift Card

If you choose “Redeem automatically” as your delivery method, your gift card balance will be reload automatically after your order has been processed successfully;

If you choose “Send to Email”as your delivery method, the card number and CVV will be sent to the email address automatically;

Any user can use the card number and CVV to redeem the gift card, please keep your gift card information safely.

If you have any trouble receiving email, please contact Yami customer service;

Yami gift card can be used to purchase both Yami owned or Marketplace products;

Yami gift card will never expire;

Yami gift card balance does not have to be used up at once;

All rights reserved by Yami.;

Return Policy

Gift card that has already been consumed is non-refundable.

Sold by JD@CHINA

Service Guarantee

Yami Free shipping from the US over $49
Yami Easy Returns

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Sold by JD@CHINA

Service Guarantee

Yami Cross-store Free Shipping over $69
Yami 30-days Return

Yami-China FC

Yami has a consolidation warehouse in China which collects multiple sellers’ packages and combines to one order. Our Yami consolidation warehouse will directly ship the packages to your door. Cross-store free shipping over $69.

Return Policy

You may return products within 30 days upon receiving the products. Sellers take responsibilities for any wrong shipment or missing items. Packing needs to be unopened for any other than quality issues return. We promise to pack carefully, but because goods are taking long journey to destinations, simple damages to packaging may occur. Any damages not causing internal goods quality problems are not allowed to return. If you open the package and any quality problem is found, please contact customer service within three days after receipt of goods.

Shipping Information

Yami Consolidation Service Shipping Fee $9.99(Free shipping over $69)

Sellers in China will ship their orders within 1-2 business days once the order is placed. Packages are sent to our consolidation warehouse in China and combined there. Our Yami consolidation warehouse will directly ship the packages to you via UPS. The average time for UPS to ship from China to the United States is about 10 working days and it can be traced using the tracking number. Due to the pandemic, the delivery time may be delayed by about 5 days. The package needs to be signed by the guest. If the receipt is not signed, the customer shall bear the risk of loss of the package.

Sold by JD@CHINA

Service Guarantee

Free shipping over 69
Genuine guarantee

Shipping

Yami Consolidated Shipping $9.99(Free shipping over $69)


Seller will ship the orders within 1-2 business days. The logistics time limit is expected to be 7-15 working days. In case of customs clearance, the delivery time will be extended by 3-7 days. The final receipt date is subject to the information of the postal company.

Yami Points information

All items are excluding from any promotion or points events on Yami.com

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Gifts Included with Purchase

Recommended for You

                                                       

                                                       

                                                       

                                                       

                                                       

                                                       

                                                       

                                                       

Reviews

Have your say. Be the first to help other guests.

Write a review
No reviews for this product. Showing reviews from other options.
Sort by
Default

Community photos

View All
Current Item
User Avatar VIP
:

{{ strLimit(comment, 200) }}

{{ comment.content }}

Review Image

{{ comment.imageList.length }} photos

Show Original

No related comment~

Review

Yami Yami
:

{{ showTranslate(commentDetails) }}Show Less

{{ strLimit(commentDetails, 800) }}Show more

Show Original

{{ commentDetails.content }}

Yami
Show All

{{ formatTime(commentDetails.in_dtm) }} VERIFIED PURCHASE {{ groupData }}

{{ commentDetails.likes_count }} {{ commentDetails.likes_count }} {{ commentDetails.reply_count }} {{ commentDetails.in_user == uid ? __('Delete') : __('Report') }}

Please write at least one word

Comments{{ '(' + replyList.length + ')' }}

Yami Yami

{{ showTranslate(reply) }}Show Less

{{ strLimit(reply, 800) }}Show more

Show Original

{{ reply.reply_content }}

{{ formatTime(reply.reply_in_dtm) }}

{{ reply.reply_likes_count }} {{ reply.reply_likes_count }} {{ reply.reply_reply_count }} {{ reply.reply_in_user == uid ? __('Delete') : __('Report') }}

Please write at least one word

Cancel

That’s all the comments so far!

Write a review
How would you rate this item?

Please add your comment.

  • A nice nickname will make your comments more popular!
  • The nickname in your account will be changed to the same as here.
Thanks for your review
Our community rely on great reviews like yours to find the best of Asia.

Report

If you find this content inappropriate and think it should be removed from the Yami.com site, let us know please.

Cancel

Are you sure to delete your review?

Cancel

{{ brandInfo.title }}

View All

About the brand

{{ brandInfo.descView }} ...View All

{{ isZh ? album.topic_name : album.topic_ename }}

Items

{{ album.goods_count_info }}

Purchased

{{ album.bought_count_info }}

View All

{{ story.page_title }}

{{ story.page_desc }}

View the Story
Customers Also Viewed
About the brand

{{ brandInfo.title }}

{{ brandInfo.desc }}
Yami

Download the Yami App