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

软件开发新课堂:Java基础与案例开发详解(附光盘)

{{ 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
Editer Recommend

·零基础初学者入门必读
·知名高校教授+培训专家联合编写
·从基础知识到案例开发融会贯通
·知识点+应用示例+技术难点剖析
·体验2个项目案例开发全过程
Content Description

《软件开发新课堂:Java基础与案例开发详解》以目前Java的较新版本JavaSE6.0为依托,结合Java语言特性和实战案例,充分融入了企业开发过程中编程人员遇到的种种Java核心技术问题和编程思想,全面系统地介绍了Java语言的基础知识、高级编程技术及应用方向。
书中内容由浅入深、循序渐进,囊括了Java基本语法、数组和常用算法,Java面向对象的编程思想,还包括一些Java高级特性,并且将一些比较流行的项目融入本书中,如聊天室程序、网络五子棋、仿QQ的网络聊天软件JQ等,使读者在较短的时间内就能够熟练掌握Java特性和项目实战的方方面面。《软件开发新课堂:Java基础与案例开发详解》在讲解的过程中,结合Java知识点,引用了大量的应用实例,并通过源代码一一列举,且每一部分内容都包含详细的注释和技巧提示,有助于初学者理解和把握问题的精髓,将所掌握的技术灵活应用到后期实际的项目开发过程中。
《软件开发新课堂:Java基础与案例开发详解》既适合初学者使用,也适合作为广大软件开发者和有一定经验的编程爱好者的参考用书,同时也可以作为高等院校及培训学校相关课程的教材使用。
Author Description

徐明华,高级工程师,有10多年的Java开发与培训经验,热衷于新技术的研究和学习,熟悉Java EE体系。曾在多家知名软件公司任职,现兼任天津天马程序员俱乐部培训师,热爱写作,出版的作品有《JSF编程实战导航》、《精通JSF:基于EJB、Hibernate、Spring整合项目开发》、《Java Web整合开发与项目实战》,在《电脑报》《软件报》《中国电脑教育报》等报刊上发表文章百余篇。
Catalogue

第1章 Java前奏
1.1 什么是Java
Java语言发展简史
1.2 认识Java语言
1.2.1 Java语言的特性
1.2.2 Java Applet
1.2.3 丰富的类库
1.2.4 Java的竞争对手
1.2.5 Java在应用领域的优势
1.3 Java平台的体系结构
1.3.1 JavaSE标准版
1.3.2 JavaEE企业版
1.3.3 JavaME微型版
1.3.4 三个版本间的关系
1.4 JavaSE环境安装和配置
1.4.1 什么是JDK
1.4.2 JDK的安装目录和实用命令工具介绍
1.4.3 设置环境变量
1.4.4 验证配置的正确性
1.5 本章练习

第2章 Java程序简介
2.1 什么是程序
2.2 计算机中的程序
2.3 Java程序
2.3.1 Java程序中的类型
2.3.2 Java应用程序开发三部曲
2.3.3 开发第一个Java程序
2.3.4 Java代码中的注释
2.3.5 源码文本字符集设置
2.3.6 常见错误解析
2.4 Java类库组织结构和文档
2.5 Java虚拟机简介
2.6 Java的拉圾回收器
2.7 上机练习

第3章 Java语言基础入门
3.1 变量
3.1.1 什么是变量
3.1.2 为什么需要变量
3.1.3 变量的声明和赋值
3.1.4 变量命名规范
3.1.5 经验之谈——变量常见错误的分析与处理
3.2 数据的分类
3.2.1 Java中的8种基本数据类型
3.2.2 数据进制
3.2.3 进制间的转换
3.2.4 基本数据类型间的转换
3.2.5 引用数据类型
3.3 标识符、关键字和常量
3.3.1 Java的标识符
3.3.2 关键字
3.3.3 常量
3.4 运算符
3.4.1 算术运算符
3.4.2 赋值运算符
3.4.3 关系运算符
3.4.4 逻辑运算符
3.4.5 位运算符
3.4.6 移位运算符
3.4.7 其他运算符
3.5 表达式
3.5.1 表达式简介
3.5.2 表达式的类型和值
3.5.3 表达式的运算顺序
3.5.4 优先级和结合性问题
3.6 顺序结构和选择结构
……
第4章 数组和排序算法
第5章 抽象和封装
第6章 继承和多态
第7章 面向对象的分析与设计
第8章 内部类与包装器
第9章 常用类介绍
第10章 Java异常处理
第11章 Java集合框架和泛型机制
第12章 多线程
第13章 Java UO
第14章 图形用户界面设计
第15章 反射
第17章 项目实战1——单机版五子棋游戏
第18章 Java数据库编程
第19章 Java网络编程
第20章 项目实战2——网络五子棋与网络版JQ的开发
Introduction

Java SE(Java Standard Edition,Java标准版)是Sun Microsystems公司平台体系结构中最基础也是最底层的版本,它是各种应用平台的基础。Java SE不仅包含了开发和部署各种桌面应用程序的API,还包含了支持Java EE企业级的应用开发以及Java ME嵌入式开发的相关类。随着Sun投入Oracle的怀抱,Java SE的功能将会进一步加强。
Java SE版本的各种特性的学习对初学者尤为重要。它不仅是初学者通向成功的基石,而且对它掌握的程度直接决定读者后期作为Java软件工程师的等级。本书是在《软件开发课堂Java基础与案例开发详解》的基础上进行的更新和升级,这一版本根据读者朋友们的反馈,将系统进行了全面的更新,对于部分章节的内容也做了适当的调整,使本书更趋实用。
本书选用了大量的实际案例,将Java语言特性通过实战代码一一呈现出来,使读者不用刻意去记忆其中的理论,就可以轻松掌握。本书中案例代码注释详细,很多都通过截图的形式展现出来,让读者一目了然。本书中具有代表性的操作以循序渐进的形式一步一步地进行引导和讲解,让读者不仅能知其所以然,而且还能编写出应用程序,具有较高的实用价值,讲解过程中还对一些初学者极易犯的错误提供了相应的解决方案和应注意的事项或提示。这些错误都是编者在开发和教学过程中的实践经验总结,目的是让读者在最短的时间内,掌握最核心、最实用的技术。另外,书中每章的示例源代码都放在所附光盘中,可帮助读者更加轻松地学习。
本书共分为20章,各章简介如下。
第1、2和3章:介绍Java环境的安装配置,Java程序的开发过程和Java语言的基础语法。
第4章:介绍数组和排序的相关知识。
第5章和第6章:介绍面向对象的编程思想——抽象、封装、继承和多态。本书中,这两章的内容最重要,读者必须掌握其中的很多概念。
第7章:介绍面向对象的分析与设计思想以及一些常用的设计习惯,对后期编程起到一定的指导作用。
第8章和第9章:介绍一些常用的类,对编程思想的运用和快速开发起到辅助作用。
第10章:介绍Java异常处理机制,该章是Java语言在健壮性上的体现,建议读者能熟练掌握。
第11章:介绍常用的数据结构和泛型机制,对一些常用的集合类,建议读者能熟练地掌握。

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

软件开发新课堂:Java基础与案例开发详解(附光盘)

{{ 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