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

21世纪高等教育计算机规划教材:Java程序设计教程(第2版)

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

21世纪高等教育计算机规划教材:Java程序设计教程(第2版)

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

1.从零开始讲起,注重基础知识,方便教学。
2.目录结构层次细腻,学起来很自如。
3.配有综合案例,提高学生编程能力。
4.对每个知识点都配有编程实例,让学生在课后能很好的练习提高。
Content Description

《21世纪高等教育计算机规划教材:Java程序设计教程(第2版)》循序渐进地介绍了Java语言的语法基础、开发工具、程序控制语句、面向对象的程序设计、图形用户界面编程、Java高级编程等内容。全书共12章,每章附有习题,供读者复习使用,同时针对每章内容,在人民邮电出版社网站上提供了上机指导,供读者选用。
《21世纪高等教育计算机规划教材:Java程序设计教程(第2版)》通过附加精选实例的方法,并穿插少量的设计细节和注意事项,按照实际开发流程对Java语言的程序设计进行了讲解,简明易懂,实用性强。《21世纪高等教育计算机规划教材:Java程序设计教程(第2版)》可作为普通高等院校计算机及理工类专业Java相关课程的教材,同时也可供Java语言的初学者参考使用。
Catalogue

第1章 Java语言概述
1.1 Java语言简介
1.1.1 Java发展的历程
1.1.2 Java的不同平台
1.2 Java语言的特点
1.3 Java开发工具箱
1.3.1 系统要求
1.3.2 下载JDK
1.3.3 安装JDK
1.3.4 JDK目录
1.3.5 设置环境变量
1.4 一个简单的Java程序
1.4.1 简单Java程序说明
1.4.2 编译和运行Java源程序
1.4.3 程序解析
1.5 Java开发工具概述
1.5.1 文本编辑器UltraEdit和EditPlus
1.5.2 Borland公司的JBuilder
1.5.3 Eclipse详细介绍
1.6 简单的Java小应用程序
小结
习题
上机指导

第2章 Java语法基础
2.1 Java程序的构成
2.2 Java基本数据类型
2.2.1 整数类型
2.2.2 浮点类型
2.2.3 字符类型(char)
2.2.4 布尔类型(boolean)
2.2.5 类型之间的转换
2.3 标记
2.3.1 空白分隔符
2.3.2 注释(comments)
2.3.3 关键字
2.3.4 标识符(identifier)
2.3.5 分隔符
2.4 常量和变量
2.4.1 常量(literal)
2.4.2 变量(variable)
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.5.9 括号及运算符间的优先级关系
2.6 常用数学工具包——java.lang.Math类
2.6.1 数学常量
2.6.2 常用数学函数
小结
习题
上机指导

第3章 Java语言程序控制语句
3.1 选择语句
3.1.1 if语句
3.1.2 switch语句
3.2 循环语句
3.2.1 while语句
3.2.2 do-while语句
3.2.3 for语句
3.3 跳转语句
3.3.1 break语句
3.3.2 continue语句
3.3.3 return语句
3.4 断言
3.4.1 断言的定义
3.4.2 断言的开启/关闭
3.4.3 防止断言滥用
3.5 Java简单程序示例
小结
习题
上机指导

第4章 Java面向对象编程基础
4.1 什么是面向对象编程
4.1.1 封装性
4.1.2 继承性
4.1.3 多态性
4.2 Java的类
4.2.1 类的基本结构
4.2.2 类的定义
4.2.3 Java源文件结构
4.2.4 main()入口方法
4.3 类的成员变量与方法
4.3.1 访问修饰符:public,private,protect和default
4.3.2 构造方法
4.3.3 定义变量
4.3.4 定义成员方法
4.3.5 参数的传递
4.3.6 方法的返回值
4.3.7 成员方法重载与过载
4.3.8 static静态成员
4.3.9 final关键字
4.4 对象概述
4.4.1 对象的声明及创建
4.4.2 调用对象的方法
4.4.3 对象的生存周期
4.4.4 对象的清理
4.5 简单范例
小结
习题
上机指导

第5章 Java面向对象编程进阶
5.1 内部类和匿名类
5.1.1 什么是内部类
5.1.2 使用内部类
5.1.3 什么是匿名类
5.1.4 使用内部类需要注意的问题
5.2 抽象类
5.2.1 抽象类和抽象方法
5.2.2 如何定义和使用抽象类
5.3 继承
5.3.1 子类
5.3.2 覆盖父类中的方法
5.3.3 this关键字的使用
5.3.4 super关键字的使用
5.3.5 继承的层次结构
5.4 包
5.5 接口
5.5.1 接口概述
5.5.2 成员变量在接口中的使用
5.5.3 方法在接口中的使用
5.5.4 接口与抽象类
5.5.5 instanceof的使用
小结
习题
上机指导

第6章 Java的类库
6.1 语言基础类库
6.1.1 Object类
6.1.2 封装类——数据类型类
6.1.3 利用封装类进行数据转换功能
6.2 数组
6.2.1 数组的创建
6.2.2 用数组保存对象
6.2.3 数组的排序
6.2.4 二维数组
6.3 Java中集合框架
6.3.1 集合类的结构层次
6.3.2 常用集合类的使用——List的使用
6.3.3 常用集合类的使用——Vector的使用
6.3.4 常用集合类的使用:Map概述
6.3.5 常用集合类的使用:Hashtable的使用
小结
习题
上机指导

第7章 字符串处理
7.1 字符串对象String类
7.1.1 String类常用方法
7.1.2 查找指定字符串
7.1.3 转化字符串的大小写
7.2 改进的String对象StringBuffer类
7.2.1 StringBuffer类——创建和使用
7.2.2 StringBuffer类——插入和删除操作
7.3 StringTokenizer类
7.4 格式化文本
7.4.1 格式化日期
7.4.2 格式化数字
7.5 正则表达式
小结
习题
上机指导

第8章 Java Swing
8.1 Java Swing概述
8.2 一个简单的Swing程序
8.3 Swing和AWT的对比
8.3.1 Swing与AWT之间的关系
8.3.2 Swing与AWT的控件的混用建议
8.4 界面图形的绘制以及文字显示与颜色控制
8.4.1 图形绘制
8.4.2 文本显示
8.4.3 动画效果
8.5 对话框与面板
8.5.1 顶级容器概述
8.5.2 JFrame主对话框
8.5.3 JDialog对话框
8.5.4 JPanel面板的使用
8.6 常用的组件
8.6.1 按钮
8.6.2 文本组件
8.6.3 单选按钮JRadioButton
8.6.4 复选框JCheckBox
8.6.5 下拉列表JComboBox
8.6.6 滑块JSlider
8.6.7 进度条JProgressBar及Timer组件
8.6.8 菜单JMenu
8.6.9 工具栏JToolBar
8.7 Java中的事件处理
8.7.1 事件处理概述
8.7.2 鼠标事件
8.7.3 鼠标移动事件
8.7.4 对话框事件
8.7.5 键盘事件
8.8 布局管理器
8.8.1 概述
8.8.2 边框布局BorderLayout
8.8.3 流动布局FlowLayout
8.8.4 卡片布局CardLayout
8.8.5 网格布局GridLayout
8.9 图形用户界面编程综合案例
小结
习题
上机指导

第9章 Java Applet编程
9.1 Applet基础知识
9.1.1 Applet的特点
9.1.2 Applet的安全机制
9.1.3 Applet的基本工作原理
9.1.4 如何在网页中嵌入Applet
9.2 Applet的生命周期和四种基本方法
9.3 向Applet传递参数
9.4 Applet综合示例
9.4.1 示例——使用Applet显示当前日期及时间
9.4.2 示例——使用Applet实现计算器功能
9.4.3 示例——在Applet小应用程序中显示图像
小结
习题
上机指导

第10章 I/O输入输出流
10.1 流概述
10.1.1 什么是流
10.1.2 输入输出类结构
10.1.3 实例:使用输入流来读取指定目录下文件的内容
10.1.4 实例:使用输入输出流来读取并显示文件内容
10.1.5 实例:使用read方法读取文件内容
10.1.6 实例:两种“程序接收用户数据输入”方法的实现
10.2 文件类(File)的使用
10.2.1 获取指定文件的描述信息
10.2.2 创建新文件
10.2.3 文件改名及文件删除
10.2.4 获取指定文件目录下的所有文件
10.3 读取文件
10.3.1 示例——读取文件并显示
10.3.2 读取文件的分类及所涉及的类
10.3.3 读取文件Reader类的基本方法
10.4 写入文件
10.4.1 示例——将输入的文本保存到文件
10.4.2 写入文件的分类及所涉及的类
10.4.3 写入文件Writer类的基本方法
10.5 随机访问文件
10.5.1 RandomAccessFile流的构造及内部方法
10.5.2 示例——使用随机访问文件流来对文件进行读写
10.6 创建压缩文件
10.6.1 ZipFile文件压缩类概述
10.6.2 实现数据文件zip方式的压缩方法
10.6.3 将.class文件打包成jar文件
小结
习题
上机指导

第11章 访问数据库
11.1 使用JDBC连接数据库
11.1.1 JDBC的作用及主要接口
11.1.2 连接不同数据库
11.1.3 连接数据库的基本步骤
11.2 执行SQL语句
11.2.1 如何使用PreparedStatement接口执行SQL语句
11.2.2 如何使用CallableStatement接口执行SQL语句
11.3 下载及安装MySQL数据库
11.3.1 下载MySQL5.5数据库
11.3.2 安装MySQL5.5数据库
11.3.3 创建数据库test及数据表userinfo
11.4 通过JDBC访问MySQL数据库
11.4.1 查询数据
11.4.2 添加、删除及修改数据
小结
习题
上机指导

第12章 学生成绩查询系统
12.1 学生成绩查询系统结构
12.2 学生成绩查询系统——数据库层
12.3 学生成绩查询系统——程序预览
12.4 视图(View)模块——前台JSP页面
12.4.1 学号输入页面main.jsp
12.4.2 错误信息页面errorpage.jsp
12.4.3 学生成绩显示页面markshow.jsp
12.5 模型(Model)模块——JavaBean和实用类
12.5.1 用于保存学生信息的实体JavaBean——Student学生类
12.5.2 保存学生成绩信息的实体JavaBean——Course课程类
12.5.3 用于连接数据库的JavaBean——DataBase数据库连接类
12.5.4 用于查询学生信息的JavaBean——MarkDB数据查询类
12.6 控制器(Controller)模块——Servlet控制器
12.7 学生成绩查询系统的发布
小结
习题
上机指导

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