{{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核心技术精讲(附DVD-ROM光盘1张)

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

Java核心技术精讲(附DVD-ROM光盘1张)

{{__(":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
Editer Recommend

视频讲解 49小时大型同步视频讲解(光盘中),把市场价值1000元的名师课堂搬回家;
案例教学 全书有506个实例、6大案例源程序分析,用实例、案例学习最快捷;
实战应用 以实战应用、就业实践为目的,拒绝纸上谈兵;
名师编著 由具有多年软件开发和培训经验、著有教材4部、北京魔乐科技实训中心知名实战派讲师李兴华编著,确保图书的实战性及优良品质;
配套完善 网站或者光盘提供了电子教案、教学课件、习题答案、交流论坛、源程序等大量学习资源。赠送Oracle数据库学习视频;
Content Description

《Java核心技术精讲》是一本实战型的、完全以自学为主的Java核心入门类图书。全书内容包括Java简介、Java基础语法、面向对象、异常的捕获及处理、包及访问控制权限、Java新特性、多线程、常用类库、Java IO操作、网络编程、类集框架、Java数据库编程、DAO设计模式、Eclipse开发工具。
Author Description

李兴华,北京魔乐科技软件实训中心(MLDN)教学总监,首席讲师,Java培训讲师,JavaEE高端培训讲师,赛迪网职业特约讲师,51CTO知名专家。8年软件开发经验,8年高端培训经验,先后为60多家大中型企业做过培训,在Java以及目前的3G/4G培训方面享有很高的知名度。
Catalogue

第1部分 Java基础知识
第1章 Java简介
视频讲解:2小时38分钟
1.1 Java概述
1.2 JDK的安装与配置
1.3 第一个Java程序:永远的“Hello World !”
1.4 第一个程序解释
1.5 CLASSPATH
1.6 本章小结
1.7 实践与练习
1.7.1 简答题
1.7.2 编程题

第2章 Java基础语法
视频讲解:2小时23分钟
2.1 注释
2.2 标识符和关键字
2.3 数据类型
2.3.1 整型(byte、short、int、long)
2.3.2 浮点型(float、double)
2.3.3 字符型(char)
2.3.4 布尔型(boolean)
2.3.5 字符串(String)
2.4 运算符
2.4.1 三目运算符
2.4.2 逻辑运算符
2.4.3 位运算符
2.5 程序结构
2.5.1 选择(分支)结构
2.5.2 循环结构
2.6 方法
2.6.1 方法的基本定义
2.6.2 方法的重载
2.6.3 递归调用
2.7 习题讲解
2.8 本章小结
2.9 实践与练习
2.9.1 简答题
2.9.2 编程题

第2部分 面向对象
第3章 面向对象
视频讲解:20小时
3.1 面向对象简介
3.2 类与对象
3.2.1 类与对象的基本概念
3.2.2 类与对象的定义
3.2.3 引用传递的初步深入
3.3 封装性初步
3.4 构造方法
3.5 匿名对象
3.6 简单Java类
3.7 数组
3.7.1 数组的基本概念
3.7.2 数组的静态初始化
3.7.3 数组与方法
3.7.4 与数组有关的操作方法
3.7.5 二维数组
3.7.6 对象数组
3.7.7 习题讲解
3.8 String类
3.8.1 String类的两种对象实例化方式
3.8.2 字符串比较
3.8.3 字符串常量是String类的匿名对象
3.8.4 String类的两种实例化方式的区别
3.8.5 字符串的内容一旦声明则不可改变
3.9 String类的常用方法
3.9.1 字符串与字符
3.9.2 字符串与字节
3.9.3 字符串比较
3.9.4 字符串查找
3.9.5 字符串替换操作
3.9.6 字符串截取
3.9.7 字符串拆分
3.9.8 其他方法
3.9.9 习题讲解
3.10 this关键字
3.10.1 “this.属性”表示本类属性
3.10.2 调用本类方法
3.10.3 this表示当前对象
3.11 引用传递的三道范例
3.12 对象比较
3.13 static关键字
3.13.1 使用static定义属性
3.13.2 使用static定义方法
3.13.3 理解主方法
3.13.4 static关键字的使用
3.14 代码块
3.14.1 普通代码块
3.14.2 构造块
3.14.3 静态块
3.15 思考题
3.16 内部类
3.16.1 内部类的基本概念
3.16.2 使用static定义内部类
3.16.3 在方法中定义内部类
3.17 引用与类抽象的实际作用
3.18 核心思考题
3.19 单向链表
3.19.1 链表的基本概念
3.19.2 链表的基本雏形
3.19.3 开发可用链表
3.19.4 保存多个对象
3.20 继承性
3.20.1 继承问题的引出
3.20.2 继承的实现
3.20.3 继承的限制
3.21 覆写
3.21.1 方法的覆写
3.21.2 属性的覆盖
3.22 核心思考题
3.23 final关键字
3.24 构造方法私有化
3.25 多例设计模式
3.26 多态性
3.27 抽象类
3.27.1 抽象类的基本概念
3.27.2 抽象类的应用——模板设计模式
3.28 接口
3.28.1 接口的基本概念
3.28.2 使用接口定义标准
3.28.3 接口的实际作用——工厂设计模式(Factory)
3.28.4 接口的实际作用——代理设计模式(Proxy)
3.28.5 抽象类和接口的区别
3.29 匿名内部类
3.30 Object类
3.30.1 取得对象信息:toString()
3.30.2 对象比较:equals()
3.30.3 使用Object接收所有的引用数据类型
3.31 包装类
3.31.1 装箱与拆箱
3.31.2 数据转型
3.32 思考题
3.33 本章小结
3.34 实践与练习
3.34.1 简答题
3.34.2 编程题

第4章 异常的捕获及处理
视频讲解:1小时13分钟
4.1 认识异常
4.2 处理异常
4.3 异常的处理流程
4.4 throws关键字
4.5 throw关键字
4.6 异常处理的标准格式
4.7 RuntimeException
4.8 断言:assert
4.9 自定义异常类
4.10 本章小结
4.11 实践与练习
4.11.1 简答题
4.11.2 编程题

第5章 包及访问控制权限
视频讲解:53分钟
5.1 包的定义及使用
5.1.1 包的定义
5.1.2 包的导入
5.1.3 jar命令
5.2 Java的常用包
5.3 四种访问权限
5.4 命名规范
5.5 本章小结
5.6 实践与练习
5.6.1 判断题
5.6.2 简答题

第6章 Java新特性
视频讲解:1小时56分钟
6.1 可变参数
6.2 foreach输出
6.3 静态导入
6.4 JDK 1.5三大主要新特性——泛型
6.4.1 泛型的引出
6.4.2 通配符
6.4.3 泛型接口
6.4.4 泛型方法
6.5 JDK 1.5三大主要新特性——枚举
6.5.1 枚举的基本概念
6.5.2 枚举的其他定义
6.6 JDK 1.5三大主要特性——Annotation
6.7 本章小结
6.8 实践与练习
6.8.1 简答题
6.8.2 编程题

第3部分 JAVA SE基础知识
第7章 多线程
视频讲解:2小时11分钟
7.1 进程与线程
7.2 多线程的实现
7.2.1 继承Thread类实现多线程
7.2.2 利用Runnable接口实现多线程
7.2.3 Thread类和Runnable接口实现多线程的区别
7.2.4 线程的操作状态
7.3 线程的主要操作方法
7.3.1 线程的命名和取得
7.3.2 线程的休眠
7.3.3 线程的优先级
7.4 线程的同步与死锁
7.4.1 同步问题
7.4.2 死锁
7.5 线程间的经典操作案例
7.5.1 解决数据错位问题:依靠同步就可以解决
7.5.2 解决数据的重复设置和重复取出
7.6 线程的生命周期
7.7 本章小结
7.8 实践与练习
7.8.1 简答题
7.8.2 编程题

第8章 常用类库
视频讲解:4小时22分钟
8.1 StringBuffer类
8.2 Runtime类
8.3 System类
8.4 日期操作类
8.4.1 日期时间类:java.util.Date
8.4.2 日期格式化操作类:SimpleDateFormat
8.5 随机数类:Random
8.6 数学公式类:Math
8.7 大数字操作类
8.8 数组操作类:Arrays
8.9 比较器
8.9.1 常用比较器:Comparable
8.9.2 挽救的比较器
8.10 对象克隆
8.11 正则表达式
8.11.1 正则表达式的引出
8.11.2 常用正则匹配符号
8.11.3 String类对正则的支持
8.12 反射机制
8.12.1 认识反射
8.12.2 反射的深入应用
8.13 本章小结
8.14 实践与练习
8.14.1 简答题
8.14.2 编程题

第9章 Java IO操作
视频讲解:4小时14分钟
9.1 文件操作类:File
9.2 字节流和字符流
9.2.1 字节输出流:OutputStream
9.2.2 字节输入流:InputStream
9.2.3 字符输出流:Writer
9.2.4 字符输入流:Reader
9.2.5 字节流和字符流的区别
9.2.6 思考题
9.3 转换流
9.4 内存操作流
9.5 字符编码
9.6 打印流
9.7 System类
9.8 缓冲区操作:BufferedReader
9.9 Scanner
9.10 对象序列化
9.10.1 对象序列化的概念
9.10.2 实现序列化和反序列化
9.10.3 transient关键字
9.11 本章小结
9.12 实践与练习
9.12.1 简答题
9.12.2 编程题

第10章 网络编程
视频讲解:56分钟
10.1 网络编程简介
10.2 网络程序的基本实现
10.3 网络开发的经典模型——ECHO程序
10.4 本章小结

第11章 类集框架
视频讲解:2小时2分钟
11.1 认识类集
11.2 单值保存的最大父接口:Collection
11.3 允许重复的子接口:List
11.3.1 新的子类:ArrayList
11.3.2 旧的子类:Vector
11.4 不允许重复的子接口:Set
11.4.1 散列存放的子类:HashSet
11.4.2 排序存放的子类:TreeSet
11.4.3 关于TreeSet排序的说明
11.4.4 关于重复元素的说明
11.5 集合的输出操作
11.5.1 迭代输出:Iterator
11.5.2 双向迭代输出:ListIterator
11.5.3 废弃的接口:Enumeration
11.5.4 JDK 1.5的支持:foreach
11.6 偶对象保存:Map接口
11.6.1 新的子类:HashMap
11.6.2 旧的子类:Hashtable
11.6.3 关于Map集合的输出问题
11.6.4 关于Map中保存key的说明
11.7 Stack类
11.8 Collections类
11.9 属性操作类:Properties
11.10 本章小结
11.11 实践与练习
11.11.1 简答题
11.11.2 编程题

第12章 Java数据库编程
视频讲解:1小时41分钟
12.1 JDBC的简介
12.2 连接Oracle数据库
12.3 使用Statement操作数据库
12.3.1 使用Statement接口进行数据表的更新操作
12.3.2 使用Statement接口进行查询
12.4 预处理:PreparedStatement
12.5 批处理及事务处理
12.6 本章小结

第4部分 设计开发
第13章 DAO设计模式
视频讲解:2小时45分钟
13.1 程序分层
13.2 实例分析
13.3 准备阶段
13.3.1 VO类:负责数据的传输与包装
13.3.2 DatabaseConnection类:负责数据库连接
13.4 开发数据层
13.4.1 定义IEmpDAO接口:数据层开发标准
13.4.2 定义IEmpDAO接口的实现类
13.4.3 定义DAO工厂类
13.5 开发业务层
13.5.1 开发业务层标准
13.5.2 定义业务层标准的实现类
13.5.3 定义Service工厂类
13.6 定义测试类
13.7 本章小结
附录A Eclipse开发工具
A.1 Eclipse历史
A.2 JDT使用
A.3 JUNIT测试工具
A.4 小结

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