{{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程序设计》共分四篇15章来阐述Java语言。其中,第一篇介绍了Java的基础知识,包括Java的历史和特征、Java的开发环境和工具、Java语言的基本语法知识;第二篇介绍了面向对象编程的思想和相关概念,Java中类的定义和对象的创建,Java继承、接口和包,数组与字符串,异常处理及JDK类库的应用;第三篇介绍了Java的AWT和Swing图形包的使用以及Java的多线程编程支持;第四篇通过一些简单的例子介绍了Java在网络和数据库方面的编程。《Java程序设计》的篇章内容采用循序渐进、由简到繁、由易到难的学习思维特征进行编排,书中例子以人们学习与认知过程为基础,以实际开发的需求为目标。书中内容通俗易懂,丰富易学,每章都附有习题,帮助读者及时了解与掌握相应章节的知识点并将其应用到实践中。
《Java程序设计》适合作为高职院校各专业学习Java语言的基础教材,也可作为相关工程技术人员和科技工作者的参考用书。
Catalogue

第一篇 Java概述
第1章 Java程序设计语言导引
1.1 Java语言的历史
1.2 Java语言的特点
1.3 Java虚拟机(JVM)
1.4 Java的应用领域
习题

第2章 Java开发与运行环境
2.1 了解JDK
2.1.1 什么是JDK
2.1.2 JDK1.6的新特性
2.2 安装JDK1.6
2.3 配置JDK1.6
2.4 创建和运行Java程序的过程
2.5 JCreator介绍
2.5.1 JCreator概述
2.5.2 JCreator编辑界面的组成
2.5.3 JCreator中JDK的设置
2.5.4 JCreator中创建和运行Java程序
习题
能力项目实训

第3章 Java程序设计基础
3.1 Java的字符集和保留字
3.1.1 Java的字符集
3.1.2 Java的保留字
3.2 Java提供的基本数据类型
3.3 变量和常量
3.4 运算符和表达式
3.4.1 算术运算符及表达式
3.4.2 逻辑运算符及表达式
3.4.3 关系运算符及表达式
3.4.4 位运算符及表达式
3.4.5 其他运算符及其表达式
3.5 基本流程控制语句
3.5.1 顺序语句
3.5.2 选择语句
3.5.3 循环语句
3.6 综合运用实例
习题
能力项目实训

第二篇 Java与面向对象程序设计
第4章 面向对象程序设计基础
4.1 面向对象程序设计的基本概念
4.1.1 什么是面向对象程序设计
4.1.2 对象
4.1.3 类
4.2 面向对象程序设计的特征
4.2.1 封装
4.2.2 继承
4.2.3 多态
4.3 从现实世界到面向对象程序开发
4.3.1 抽象
4.3.2 面向对象程序设计步骤
4.3.3 面向对象程序设计的优越性
4.4 综合运用实例
习题
能力项目实训

第5章 Java类和对象
5.1 类的定义和使用
5.1.1 类的定义
5.1.2 方法成员的定义及重载
5.1.3 对象的创建
5.2 Java类的封装性
5.2.1 类访问控制符
5.2.2 成员访问控制符
5.3 对象的初始化
5.3.1 构造方法
5.3.2 对象初始化块
5.3.3 静态初始化块
5.4 对象销毁机制
5.4.1 垃圾回收器
5.4.2 finalize方法
5.5 综合运用实例
习题
能力项目实训

第6章 Java继承、接口和包
6.1 Java类的继承
6.1.1 子类的声明方式
6.1.2 子类对象的创建
6.1.3 子类的构造方法
6.1.4 在子类中访问父类中的成员
6.2 Java类的多态
6.2.1 方法重载
6.2.2 方法覆盖
6.3 抽象类及抽象方法
6.3.1 抽象类和抽象方法的定义
6.3.2 抽象类和抽象方法的使用
6.4 final类及final成员
6.5 接口
6.5.1 接口的定义
6.5.2 接口的实现
6.6 包
6.6.1 包的定义
6.6.2 包的引用
6.7 综合运用实例
习题
能力项目实训

第7章 数组与字符串
7.1 数组
7.1.1 一维数组
7.1.2 二维数组
7.2 字符串
7.2.1 字符串的表示
7.2.2 字符串的操作
7.3 综合应用实例
习题
能力项目实训

第8章 异常处理
8.1 Java异常处理机制介绍
8.2 异常处理方式
8.3 异常类
8.3.1 异常类的定义
8.3.2 异常类的使用
8.4 综合运用实例
习题
能力项目实训

第9章 JDK类库的使用
9.1 JDK类库介绍
9.2 I/O流类
9.2.1 标准I/O流
9.2.2 文件流
9.3 向量类、日期类及随机数类
9.3.1 向量类
9.3.2 日期类
9.3.3 随机数类
9.4 综合运用实例
习题
能力项目实训

第三篇 图形用户界面设计
第10章 AWT组件
10.1 AWT介绍
10.2 常用的AWT组件介绍
10.2.1 容器组件
10.2.2 控制组件
10.3 布局类及布局管理器
10.3.1 BordcrLayout类
10.3.2 FlowLayout类
10.3.3 CridLayout类
10.3.4 CardLayout类
10.4 JDK的事件处理机制
10.4.1 事件处理机制的介绍
10.4.2 各种事件及其处理方法
10.5 绘图类的使用
10.6 综合运用实例
习题
能力项目实训

第11章 Swing组件
11.1 Swing组件介绍
11.2 Swing常见组件的使用
11.3 综合运用实例
习题
能力项目实训

第12章 多线程
12.1 线程相关概念
12.2 线程创建的两种方法
12.2.1 Thread类
12.2.2 Runnable接口
12.2.3 线程的生命周期
12.2.4 线程调度和优先级
12.3 线程同步
12.4 综合运用实例
习题
能力项目实训

第四篇 网络与数据库编程介绍
第13章 Applet类
13.1 Applet类介绍
13.1.1 编写Applet程序概述
13.1.2 Applet程序建立以及运行的步骤
13.1.3 Applet的主类
13.2 Applet类的生命周期及其方法
13.2.1 Applet类的生命周期
13.2.2 Applet类中的方法
13.3 Applet的通信
13.4 综合运用实例
习题
能力项目实训

第14章 Java与网络编程
14.1 网络基本概念
14.2 URL类、URLConnection类和InetAddress类
14.2.1 URL概念
14.2.2 URL类
14.2.3 URLConnection类
14.2.4 InetAddress类
14.3 Socket编程
14.3.1 基本概念
14.3.2 TCP Socket编程
14.3.3 UDP Socket编程
14.4 综合运用实例
习题
能力项目实训

第15章 Java与数据库编程
15.1 JDBC介绍
15.2 JDBC编程
15.2.1 JDBCAPI介绍
15.2.2 JDBC中的常用接口和类
15.3 Java与数据库连接
15.3.1 建立ODBC数据源
15.3.2 连接数据库
15.3.3 数据操作
15.4 综合运用实例
习题
能力项目实训
参考文献
Book Abstract

Java是针对网络环境的程序设计语言,提供了强有力的网络支持机制。Java通过采用面向对象的方法,编写网络通信程序时,通常是在应用层,隐藏了网络通信程序设计中一些烦琐的细节,只要用java.net包中的类即可实现与网络平台无关的网络通信服务。
计算机在网络上应用TCP和UDP协议进行通信,协议栈由四层组成,如图14-1所示。每层都有明确的功能及用途。每层都能导出准确定义的接口,通过接口紧邻的上、下两层相互通信。因为每个层都只与紧邻它的上、下层进行通信。只要一个层提供的服务确定下来,相应的接口也会确定下来,每层都可以独立设计。这种分层结构具有简化协议栈设计、简化使用设计等多方面的优点。
端口(port)与IP地址一起为网络通信的应用程序提供了一种确切的地址标识功能。计算机的网络地址是一个32位二进制数组成的IP地址。每个连网的计算机都有一个IP地址,利用它将数据传输到目的计算机。如210.35.8.1是某一服务器的IP地址,转换成32位二进制为:11010010.00100011.00001000.00000001,一般IP地址用十进制表示。本地主机的IP地址为:127.0.0.1。端口用16位二进制数表示,TCP和UDP都通过端口来指明数据发往的应用程序,如图14-2所示。
TCP和UDP协议利用端口把流入的数据映射到运行在计算机上特定的进程。端口从0到65535编号,其中0到1023端口号被保留,它们被许多知名服务占据,如HTTP、ftp等。
Java.net类中提供了两个不同层次的网络支持机制:用URL访问网络资源和用socket通信。

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