{{sellerTotalView > 1 ? __("sellers", {number: sellerTotalView}) : __("seller", {number: sellerTotalView}) }}, {{numTotalView > 1 ? __("items", {number: numTotalView}) : __("item", {number: numTotalView}) }}
free FREE

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

Java 程序员成功面试秘籍

{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}

Java 程序员成功面试秘籍

{{__(":people-members", {'people': item.limit_people_count})}} {{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ item.invalid_price }} {{ itemDiscount }}
Ends in
{{ 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 }}
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
Best before

Currently unavailable.

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

Unavailable in your area.
Sold Out

Details

Full product details
Content Description

成功赢得面试并收获你值得的Java编程工作
《Java程序员成功面试秘籍》是你参加热门Java职位面试的好帮手。面试专家和Java开发者Noel Markham联合Interview Zen网站从20 000多名参加真实IT公司面试的面试者中收集、编译了一些与Java相关的具有挑战性的题目和解答。这些珍
贵的资料可以帮助你展现对完整Java生态系统的认识,并避免面试中的常见错误,让你充满自信地参加面试,得到自己梦想的工作。
主要内容
◆ 从真实的Java编程职位面试中遴选了200多道问题和解答
◆ 为Java求职者准备了3套必备技能:面试流程技能、核心Java技能以及与Java组件和框架相关的技能
◆ 提供了一个Scala语言(一种运行在JVM上的语言)的附录,帮助你给潜在雇主留下深刻印象
◆ 在支持网站上可以下载书中所有的示例代码。此外还可以在Interview Zen网站上找到更多的支持和测试材料

Author Description

Noel Markham,是一名有着将近15年Java经验的开发者,他涉足的领域包括金融、技术和游戏。最近,他在一家主营社交游戏和数码娱乐的初创公司工作。他面试过从应届毕业生到技术管理者各种层次的开发者。他在英国和海外设立了测评中心以组建完整的开发团队。

Catalogue

第Ⅰ部分 面试流程概述
第1章 面试类型分析
1.1 电话面试流程
1.2 技术测试
1.3 应对面对面的现场面试
1.4 最终的决定
1.5 本章小结
第2章 撰写引人入胜的简历
2.1 如何撰写简历和求职信
2.2 撰写求职信
2.3 本章小结
第3章 技术测试和面试基础知识
3.1 书面技术测试
3.2 上机测试
3.3 面对面的技术面试
3.4 本章小结
第4章 编写核心算法
4.1 关于大O符号
4.2 列表排序
4.3 列表搜索
4.4 本章小结
第5章 数据结构
5.1 列表
5.2 树
5.3 映射
5.4 集合
5.5 本章小结
第6章 设计模式
6.1 考察示例模式
6.2 常用模式
6.3 本章小结
第7章 常见面试算法的实现
7.1 实现FizzBuzz
7.2 生成斐波那契数列
7.3 实现阶乘
7.4 实现库的功能
7.5 使用泛型
7.6 本章小结
第Ⅱ部分 核心Java
第8章 Java基础
8.1 原始类型
8.2 使用对象
8.3 Java数组
8.4 String的使用
8.5 理解泛型
8.6 自动装箱和拆箱
8.7 使用注记
8.8 命名约定
8.8.1 类
8.8.2 变量和方法
8.8.3 常量
8.9 处理异常

Introduction

有人会认为面试很难对付,因为面试是一个一对一的考察技术能力的过程。

这本书是准备找工作的Java面试者的必备指南。本书提供了足够多的练习材料,让你有足够的信心面对可能会被问到的问题,因此可以帮助你克服Java编程面试过程中的恐惧和担忧。

本书介绍的技术

本书是基于Java SE 7编写的。如果你是一位有经验的Java开发者,但是还没有跟上Java 7的步伐,那么可以在本书中学习以下新的语言特性和API库。

钻石操作符

编译器会尽可能地推导出泛型实例的类型。因此,我们可以编写List numbers = new ArrayList<>()这样的语句,而不用编写List numbers = new ArrayList()这样的语句。这样在使用集合时,特别是在集合嵌套集合时,可以大大减少样板化代码的量。

在switch语句中使用String

最初的Java switch语句只能处理数值类型。随着Java 5引入了枚举类型,在switch语句中还可以使用枚举类型。现在从Java 7开始,在switch语句中可以使用String对象。

新的文件I/O库

Java 7引入了一个新的I/O库,关注的是平台无关的非阻塞I/O。

此外,Java 7还引入了很多新特性,例如自动资源管理和二进制字面量的表示形式。本书全书使用Java 7。可以认为,面试官会使用最新的Java技术来进行考察,因此随着语言的新版本的发布,你也应该让自己的技能跟上时代的步伐。

有一些Java框架和库还没有完全兼容Java 7,因此在使用具体组件时请查阅最新的文档。

本书的组织结构

全书分为以下3个独立的部分。

第Ⅰ部分:面试流程概述

关于面试流程的章节包含两方面的内容:一方面是如何向面试官表现自己,另一方面是一些和Java无关但是可能会出现在技术面试中的一般性技术话题。

第1章:面试类型分析

该章介绍了雇主的招聘流程中的各个步骤,从电话面试到面对面的技术测试,再到和招聘经理的面谈。

第2章:撰写引人入胜的简历

简历及其附信是下一任雇主对你产生的第一印象。该章讨论了如何让你的简历脱颖而出,给出了语言相关的一些小建议和招聘者会关注的一些问题。

第3章:技术测试和面试基础知识

任何潜在的雇主都会考察你的技术能力,而且会采用尽可能高效的方式。该章讨论了各种不同类型的编程测试和技术测试,并讨论了如何准备这些类型的测试。

第4章:编写核心算法

计算机科学的核心概念是技术测试中经常会考察的内容,其中包含排序和搜索。该章给出了一些不同的搜索和排序算法,并讨论了每一种方法的优劣。

第5章:数据结构

在面试中,计算机科学核心概念的相关问题除了排序和搜索之外,常见的主题就是数据的高效存储和表达。第5章讨论了列表、树、映射和集合等数据结构,讨论了这些数据结构的表达和使用。

第6章:设计模式

该章涵盖了一些面向对象的设计模式,还展示了Java库中的类使用的一些模式。

第7章:常见面试算法的实现

该章给出了一些常见的面试题,并用Java实现了这些题目的解答。本章很多题目都来自于一个很流行的技术面试网站interviewzen.com。

第Ⅱ部分:核心Java

这一部分章节的内容是面试官认为有经验的Java开发候选人应该了解的内容。

第8章:Java基础

该章覆盖了Java的很多语言特性,有经验的Java开发者可以利用该章复习基础知识。

第9章:基于JUnit的测试

本书使用的一个核心思想是单元测试。该章介绍了JUnit,并讲解了如何通过JUnit验证假设和断言。

第10章:理解Java虚拟机

任何有能力的开发者都会对自己使用的平台有一定的理解,Java也不例外。该章介绍了JVM的一些特性,以及JVM和Java语言之间的交互。

第11章:并发

该章讨论了Java的线程模型及使用方法。该章还介绍了actor模型,它是并发编程采用的一种新方法。

第Ⅲ部分:组件和框架

这一部分讨论了一些使用Java的领域,从数据库到Web服务,从流行的框架(例如,Hibernate和Spring)到构建和发布企业级应用的工具。在面试某个具体职位时,面试官可能希望你具有这些章节所介绍的一些相关知识,而这些知识通常都会在工作描述中列出,也许你一开始就是因为看到了工作描述才去应聘这份工作。

第12章:Java应用程序和数据库的整合

很多大型Java应用程序都会包含数据库组件。该章介绍了数据库操作的标准语言SQL以及如何在Java中使用SQL。

第13章:创建Web应用程序

Java是创建通过HTTP提供数据服务的应用程序的一种常用语言。该章讨论了3个流行的框架:Tomcat、Jetty和Play。

第14章:HTTP和REST

该章讨论了HTTP的另一种用途:通过REST (Representational State Transfer)风格创建和使用Web服务。

第15章:序列化

序列化是传输结构化数据所采用的方法。该章涵盖了3种方法:Java自己的序列化机制以及分别使用XML和JSON的平台无关的方法。

第16章:Spring框架

Spring框架是一个比较流行的应用框架,很多雇主在自己的一些甚至全部应用中都使用了这个框架。该章讨论了Spring框架的一些组件,包括核心应用上下文、数据库集成以及集成测试。

第17章:使用Hibernate

Hibernate是一个将关系数据库数据映射到Java对象的框架。该章介绍了Hibernate,以及如何通过Hibernate创建和操作对象。

第18章:有用的库

Java有很多有用且可重用的库。该章介绍了3个比较流行的库:Apache Commons、Guava和Joda Time。

第19章:利用构建工具进行开发

任何大型的Java应用程序,特别是涉及多位开发者的应用程序,其构建和打包过程都需要管理良好的流程。该章介绍了构建Java应用程序使用的两个最流行的工具:Maven和Ant。

第20章:Android开发

最后这一章介绍了Java语言的一种现代应用:在Android上开发移动应用程序。该章介绍了Android SDK的关键组件及其整合方式。

附录A:Scala简介

该附录介绍了Scala语言,这是一种在Java开发团队中越来越流行的语言,因为这种语言使用JVM作为平台。该附录介绍了Scala语言的一些基本知识、函数式编程的概念以及一些和不可变性相关的约定。

本书读者对象

本书面向的是有一些经验的Java开发者:这样的读者应该了解这门语言,而且使用过一段时间,但是对书中有些章节的内容不熟悉甚至完全不了解。如果你从来没有使用过Java,这本书也会有帮助,特别是第Ⅱ部分中的几章。你应该按顺序阅读这些内容,同时可以参考其他更深入的介绍性材料。

如果你处于面试官的位置,那么这本书也很有用,你可以通过本书找到一些在面试中问问题的灵感。

本书利用的工具

从https://www.oracle.com/technetwork/java/javase/downloads/index.html可以下载最新的Java JDK。大部分专业开发者会在集成开发环境(Integrated Development Environment,IDE)中编写Java代码。IntelliJ(免费社区版可以从https://www.jetbrains.com/idea/download/index. html下载)和Eclipse(可以从https://www.eclipse.org/downloads/下载)是两个最流行的IDE。有些面试官在面试过程中可能要求你使用计算机和IDE编写代码,因此你也应该熟悉这些IDE的基本操作。

小结

本书并不是获得Java开发者工作的捷径,而是帮助你找到下一份工作的指南。通过本书可以了解面试官在招聘过程中经常会提到的一些话题。

经验对于面试非常有帮助,不仅对于面试的内容本身有帮助,而且也有助于减轻面试本身的陌生感和压迫感。你必须不断地练习面试的技巧,随着参与开发的时间越来越多,你的技能也会不断提高。在面试过程中获得经验会比较困难。每一个面试官都会采用不同的面试方式,整个过程也不会完美。潜在的雇主除了考虑“这位候选人是否足够好”之外还要考虑很多变数,在通盘考虑之后才可能给出录用意向。预算的约束,团队的融合,甚至面试官本身的心情都会对面试造成影响。

如果被拒了,也不要太沮丧,尝试从中吸取一些经验,想一想在以后的面试中会碰到什么问题。

还要记住,面试是一个双向的过程:在面试时要询问关于职位的细节,还要了解未来的同事以及在办公室中的生活情况。如果感觉不对的话,不要害怕拒绝。

祝你在准备面试的过程中好运,也希望你能享受这个过程。祝愿本书能帮你找到理想的工作。

与其说本书是一本面试书,不如说是一本Java大全。这本书介绍了Java开发所涉及的各个方面的知识,从最基础的语言特性,到设计模式以及Spring和Hibernate这样的框架;从基本的算法和数据结构,到大型Java项目的构建流程;从Java虚拟机的基本原理和Java并发,到Android开发和Scala语言的基本思想,无所不包。

如果你是要参加技术面试的候选人,那么可以通过本书对Java相关知识查漏补缺,还可以利用本书给出的题目进行演练;如果你是刚接触Java的新手,那么可以通过本书迅速了解专业Java开发者所需要的知识和素养;如果你是Java老手,那么在这本书中一定还能找到自己欠缺的方面。

此外,本书还试图帮助读者建立起测试驱动开发的习惯,在如今大规模使用Java开发线上服务的时代,充分的测试能保证你睡个好觉。

当然,我们不能把这本书当成Java知识大全,本书以面试题的形式将Java相关的很多重要知识点串起来,但如果想要了解更多的细节,还需要参阅相关的文档和涉及相关主题的更深入的书籍。

在本书的翻译过程中,要特别感谢清华大学出版社的编辑们对我的指导和督促,感谢他们对本书翻译稿的修正和润色。还要感谢我的妻子和襁褓中的孩子对我因为翻译本书而对他们关注减少的理解和支持。

本书全部章节由郑思遥翻译,由于时间和水平的限制,翻译稿中难免存在疏漏和错误,敬请广大读者批评指正。

郑思遥

2014年12月

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
Add to favorites
{{ $isZh ? coupon.coupon_name_sub : coupon.coupon_ename_sub | formatCurrency }}
{{__("Buy Directly")}} {{ itemCurrency }}{{ item.directly_price }}
Quantity
{{ quantity }}
{{ instockMsg }}
{{ limitText }}
{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}
Sold by JD@CHINA
Ship to
{{ __("Ship to United States only") }}
Free shipping over 69
Genuine guarantee

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;

Yamibuy reserves the right of final interpretation.

Sold by Yami

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

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 Yamibuy.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 over $49
Yami Easy Returns
Yami Ships from United States

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 Yamibuy.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.

Yami

Download the Yami App

Back Top

Recommended for You

About the brand

Jingdong book

为您推荐

Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折

Reviews{{'('+ commentList.posts_count + ')'}}

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

Write a review
{{ totalRating }} Write a review
  • {{i}} star

    {{i}} stars

    {{ parseInt(commentRatingList[i]) }}%

Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

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

Show Original

{{ comment.content }}

Yami
Show All

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

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

{{ showTranslate(comment) }}Show Less

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

Show Original

{{ comment.content }}

Yami
Show All

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

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

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

You’ve Recently Viewed

About the brand

Jingdong book