{{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程序设计基础:Java小管家系统构建

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

Java程序设计基础: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语言及JDK框架进行了全面的介绍,包括:Java基础语法、输入输出、异常处理、集合技术、XML解析技术、数据库访问技术、GUI技术等内容。共有十个课题,第一个到第九个课题利用项目任务作为载体介绍Java基础知识,第十个课题是一个综合实训项目,重点是综合运用之前介绍的基础知识,并使用面向对象程序设计思想完成一个实际的软件项目的开发任务。
本书有以下特色:第一,内容的选择上以典型、实用为基本原则;第二,内容的安排上以项目任务为学习单元,在实际的小任务中学习Java技术,最后再将学到的技术应用于一个综合项目——Java桌面小管家,前面的小任务具有技术的连贯性,在设计上既保障了基本的教学要求,也为学有余力的人提供了扩展的空间;第三,内容的表述中大量使用图表,特别是流程图,使任务的分析更加清晰、直观,让读者有更加明确的任务定位。
Catalogue

课题一Java桌面小管家项目分析
任务1Java桌面小管家项目分析

课题二了解Java语言
任务2编写第一个Java程序

课题三面向对象程序设计思想
任务3为小管家设计类
任务4实现小管家中类的属性
任务5实现小管家中类的方法

课题四Java基础语法
任务6完成每日支出的简单统计任务
任务7使用数组完成支出统计任务
任务8实现小管家界面上的日期显示功能

课题五Java输入输出处理及异常处理方法
任务9从控制台接受每日支出的数据
任务10处理数据输入的错误
任务11验证支出数据的合法性
任务12使用文件存储备忘录信息

课题六使用Java中的集合
任务13使用集合存储备忘录信息
任务14使用集合存储通讯录信息

课题七Java与XML
任务15创建XML文件存储通讯录信息
任务16从XML文档中读取通讯录信息
任务17修改存储在XML文件中的通讯录信息

课题八Java的数据库访问技术
任务18为支出模块建立数据库
任务19访问支出表

课题九Java的GUI技术
任务20为通讯录模块设计和实现界面
任务21为通讯录管理界面实现简单的事件处理

课题十Java桌面小管家综合实训
实训一备忘录管理模块
任务1实现备忘录模块业务操作类
任务2实现备忘录模块界面设计
实训二通讯录模块
任务1实现通讯录模块数据模型类
任务2实现通讯录模块业务操作类
任务3实现通讯录模块界面设计
实训三支出模块
任务1实现支出模块公共信息类
任务2实现支出模块数据模型类
任务3实现数据访问通用类
任务4实现支出模块业务操作类
任务5实现支出模块界面设计
实训四小管家主界面设计
任务1实现小管家主界面的标题面板
任务2实现小管家主界面的主窗体
Book Abstract

任务4提出:类模型中的属性由变量实现,类模型中的行为由方法(或者称为函数)实现。本任务,我们需要了解Java语法中的方法,并根据小管家的各个类的设计需求实现方法的定义。
相关知识
如果变量是一个具有特定名称,用来存储数据的区域,那么方法就是具有特定名称,用来存储操作过程的区域。如果你需要得到一个数据,你需要调用存储了这个数据的变量;如果你希望执行一些动作,得到一个操作结果,那么你得借助方法来实现了。
一、方法的结构
我们通过一个洗衣服的例子了解方法的基本结构。如果我们使用洗衣机洗衣服,先要从盆子里拿出脏衣服放入洗衣机的圆筒里,把洗衣粉放入指定的槽口,然后按一下开关,当洗衣机把衣服洗完之后会发出提示音,这时候你就可以把干净的衣服取出来了。
这个过程中你做的所有事情是一个主程序,你从盆子里面拿脏衣服,就是相当于从一个实际的变量中取出数据,而洗衣机是一个预先定义好的方法,里面存储了洗衣服的程序,这个程序需要你提供洗衣粉、脏衣服,这个程序运行完毕返回干净衣服。
Introduction

为了满足高等职业技术院校计算机网络技术专业教学改革的需要,人力资源和社会保障部教材办公室组织一批教学经验丰富、实践能力强的教师与行业、企业的专家,在充分调研、讨论专业设置和课程教学方案的基础上,编写了该专业系列教材,包括:《计算机网络基础》《网络设备互联技术》《Windows Server 2008网络服务器配置与管理》《Linux网络服务器配置与管理》《SQL Server网络数据库开发与管理》《网络综合布线技术》《网络安全防护技术》《计算机组装与维修》《网页设计与制作》《Java程序设计基础》《C程序设计》《Visual Basic程序设计基础》《ASP.NET动态网站开发》《JSP动态网站开发》等。
这套教材具有以下几个方面的特点:
第一,突出职业教育特色,重视职业能力培养。根据计算机网络技术专业毕业生所从事职业的实际需要,合理选择教学内容,突出企业工作实践内涵,使学生具有组建网络、管理网络、使用网络等职业技能,满足企业对计算机网络技能型人才的要求。
第二,贯彻任务驱动编写思路。结合先进的教学理念,做到理论学习有载体,工作实训有实体,通过具体的工作任务引导学生进行知识和技能的学习。有利于激发学生的学习积极性,变被动学习为主动学习,使学生在掌握知识和技能的同时,获得学习成就感。
第三,根据国家职业标准、计算机技术与软件考试大纲以及行业、企业工作规范组织教学内容,涵盖网络管理员、网络工程师等国家职业标准的相关要求,使教材具有很强的实用性和针对性。
第四,提供全方位教学资源的服务与支持。对重点教材开发配套的教学课件,如电子教案、素材库、源文件、视频教学录像等,便于教师教学工作的开展。
本套教材的编写得到了有关省市教育部门、人力资源和社会保障部门以及一批高等职业技术院校的大力支持,教材编审人员做了大量的工作,在此,我们表示衷心的感谢!同时,恳切希望广大读者对教材提出宝贵的意见和建议。

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