
java 基础
文章平均质量分 89
mrcuilidong163
这个作者很懒,什么都没留下…
展开
-
java提高篇(二)-----理解java的三大特性之继承
在《Think in java》中有这样一句话:复用代码是Java众多引人注目的功能之一。但要想成为极具革命性的语言,仅仅能够复制代码并对加以改变是不够的,它还必须能够做更多的事情。在这句话中最引人注目的是“复用代码”,尽可能的复用代码使我们程序员一直在追求的,现在我来介绍一种复用代码的方式,也是java三大特性之一---继承。 继承 在讲解之前我们先...原创 2014-05-06 09:21:32 · 123 阅读 · 0 评论 -
java提高篇(一)-----理解java的三大特性之封装
三大特性之---封装 封装从字面上来理解就是包装的意思,专业点就是信息隐藏,是指利用抽象数据类型将数据和基于数据的操作封装在一起,使其构成一个不可分割的独立实体,数据被保护在抽象数据类型的内部,尽可能地隐藏内部的细节,只保留一些对外接口使之与外部发生联系。系统的其他对象只能通过包裹在数据外面的已经授权的操作来与这个封装的对象进行交流和交互。也就是说用户是无需知道对象内部的细节...原创 2014-04-17 14:43:49 · 200 阅读 · 0 评论 -
final 用法
Java中的final关键字非常重要,它可以应用于类、方法以及变量。这篇文章中我将带你看看什么是final关键字?将变量,方法和类声明为final代表了什么?使用final的好处是什么?最后也有一些使用final关键字的实例。final经常和static一起使用来声明常量,你也会看到final是如何改善应用性能的。final关键字的含义?final在Java中是一个保留的关键字,可以...原创 2014-04-14 09:18:30 · 127 阅读 · 0 评论 -
Shopizer网站模版
Store templates make usage of JSTL (http://www.oracle.com/technetwork/java/index-jsp-135995.html), Struts 2 tag libraries (http://struts.apache.org/2.0.14/docs/tag-reference.html) and custom Shopiz...原创 2014-05-16 09:33:26 · 299 阅读 · 0 评论 -
Shopizer核心代码
Save and retrieve configurationsIt is possible to save and retrieve configurations using the code described below:The code is saved in MerchantConfiguration entity which can be retrieved usi...原创 2014-05-16 09:21:00 · 251 阅读 · 0 评论 -
Shopizer网站模块构造
ModulesModules are plug in pieces of code that can be added and used in Shopizer with minimum configuration and integration efforts. Modules can also represent classes that can be interchanged f...原创 2014-05-16 09:18:20 · 340 阅读 · 0 评论 -
Shopizer网站二次开发
Deploying ShopizerThe following information applies to Shopizer source distribution. If your intention is to test the application, there is a distribution bundled with Jetty ready to run without ...原创 2014-05-16 09:14:48 · 790 阅读 · 0 评论 -
Shopizer网站配置
Directory structuretestThe source code directory structure is arranged as described belowmediaThis is a convenient default web application for storing products and merchants image...原创 2014-05-16 09:13:33 · 472 阅读 · 0 评论 -
Shopizer网站介绍
http://www.shopizer.com/doc/doku.php?id=introduction Supported databases & driversModulesApplication modulesPricePackingShipping modulesAdding langua...原创 2014-05-15 17:26:39 · 729 阅读 · 0 评论 -
Shopizer网站数据库设计
Database schemaThe database schema information decribed in this section is divided into 5 sectionsMerchant informationProduct catalogueOrder informationTax information...原创 2014-05-15 17:21:48 · 395 阅读 · 0 评论 -
Java开发者值得关注的7款新工具
云计算、大数据地快速发展催生了不少热门的应用及工具。作为老牌语言Java,其生态圈也出来了一些有关云服务、监控、文档分享方面的工具。本文总结了7款较新的Java工具,大家不妨看下。1. JClarity——性能监控JClarity目前提供两款有关Java性能的工具:Illuminate和Censum,Illuminate是一款性能监控工具,而Censum是一款专注于垃圾回收的日志分析工具...原创 2014-10-22 13:15:35 · 141 阅读 · 0 评论