{{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中一些零散的知识点进行集中式的讲解,是一本内容丰富的教材。
本书适合作为高等院校相关专业公共课教材、培训机构的学生用书,也可作为读者自学的参考手册。
Catalogue

第1章绪论
1.1我国IT发展历程
1.1.1IT发展历史
1.1.2IT的发展趋势
1.1.3IT在我国的发展
1.2我国软件发展历程
1.2.1软件的概念
1.2.2软件的发展阶段
1.2.3软件在我国的发展
1.3面向对象基础
1.3.1面向对象技术
1.3.2面向对象技术的发展历史
1.3.3面向对象程序设计的特点
1.3.4实体的抽象
本章小结
习题

第2章Java的基础知识
2.1Java语言的产生与发展
2.2配置Java开发环境
2.2.1下载JDK
2.2.2安装JDK
2.2.3Windows系统下配置和测试JDK
2.3Java开发工具Eclipse
2.3.1Eclipse简介
2.3.2Eclipse的安装与启动
2.3.3Eclipse编写程序的流程
2.4Java的基本语法
2.4.1注释
2.4.2分号、块和空白
2.4.3标识符
2.4.4Java关键字
2.5数据类型
2.5.1简单数据类型
2.5.2引用数据类型
2.5.3常量和变量
2.5.4整型数据
2.5.5浮点型数据
2.5.6字符型数据
2.5.7布尔型数据
2.5.8简单数据类型之间的转换
2.6语句
2.7Java应用程序
2.8应用实例:字符转换
本章小结
习题

第3章Java语言的控制结构
3.1运算符和表达式
3.1.1运算符
3.1.2表达式
3.2选择结构
3.2.1简单的if语句
3.2.2if-else语句
3.2.3嵌套的if-else多路选择结构
3.2.4switch选择语句
3.3循环结构
3.3.1while语句
3.3.2do-while结构
3.3.3for循环语句
3.3.4多重循环语句
3.3.5循环中的跳转语句
3.4应用实例
本章小结
习题

第4章字符串和字符串处理
4.1String基本知识
4.1.1构造String
4.1.2String连接
4.1.3String索引
4.1.4String查找
4.1.5StringBuffer
4.2字符串处理
4.2.1字符串字符处理
4.2.2字符串子串处理
4.3字符串相等性
4.3.1比较字符串
4.3.2对象相同与对象相等的对比
4.3.3String相同与String相等的对比
4.4基本数据类型转换为字符串
4.5格式化字符串
4.5.1格式化日期和时间
4.5.2格式化数字
4.6应用实例
本章小结
习题

第5章数组
5.1一维数组
5.1.1声明和创建数组
5.1.2数组分配和引用
5.1.3初始化数组
5.1.4数组赋值和使用数组值
5.1.5范例:数组复制
5.2二维数组
5.2.1二维数组方法
5.2.2数组初始化
5.3数组排序
5.4数组查找
5.5应用实例
本章小结
习题

第6章面向对象基础
6.1使用类
6.1.1类的组成
6.1.2构造方法与初始化
6.1.3方法的重载
6.1.4静态成员
6.2继承
6.2.1继承的概念
6.2.2继承的定义
6.2.3使用继承方法
6.2.4属性继承与隐藏
6.3this关键字与super关键字
6.4成员变量初始化
6.5应用实例
本章小结
习题

第7章面向对象进阶
7.1多态与动态绑定
7.1.1多态和动态绑定
7.1.2父类对象与子类对象的转化
7.1.3instanceof运算符
7.1.4泛型
7.1.5参数可变的方法
7.2抽象类与抽象方法
7.2.1抽象类
7.2.2抽象方法
7.3包
7.3.1包的作用
7.3.2包的创建
7.3.3包的引用
7.3.4向包中添加类
7.3.5包的作用域
7.3.6静态引用
7.4接口
7.4.1接口的概念
7.4.2接口的声明
7.4.3接口的实现
7.5静态变量
7.5.1类(static)变量
7.5.2类(static)方法
7.6关键字final
7.6.1final类
7.6.2final方法
7.6.3final变量
7.7内部类
7.7.1内部类定义
7.7.2使用内部类
7.8包装类
7.9反射
7.9.1反射机制
7.9.2反射机制应用实例
本章小结
习题

第8章异常处理
8.1异常的概念
8.1.1异常的定义
8.1.2异常体系
8.1.3系统定义的异常
8.2异常情况处理
8.2.1传统的错误处理
8.2.2Java的默认异常处理
8.3在程序中处理异常
8.3.1异常抛出和捕获
8.3.2try/catch/finally
8.3.3多catch子句
8.3.4throw和throws的使用
8.3.5异常方法覆盖
8.3.6异常处理的限制条件
8.4创建并抛出自定义的异常
8.5应用实例
本章小结
习题

附录A编码约定
A.1注释
A.1.1块注释
A.1.2单行注释
A.1.3Java文档型注释
A.2缩进与空白
A.3命名约定
A.4括号的使用
A.5文件名与布局
A.6语句
A.7可执行语句
附录BASCII码和Unicode字符集
附录CJava关键字
附录D运算符的优先级结构

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