CSDN首页 空间 新闻 论坛 Blog 下载 读书 网摘 搜索 .NET Java 视频 接项目 求职 在线学习 买书 程序员 通知
山寨机中的战斗机! 程序优化工程师到底对IT界有没有贡献
CSDN社区
搜索 收藏 打印 关闭
CSDN社区 >  扩充话题 >  程序员英语

同学的中译英327字

楼主leeloo(夫木)2003-06-03 08:45:44 在 扩充话题 / 程序员英语 提问

近年来,随着Internet及全球化应用的快速发展,越来越多的人像使用其它无国界、无时间、无地域线值的便利环境来拓展经营商务。因此电子商务(Electronic   Commerce/EC)便越来越流行,越来越多的企业也想使用该技术与方法进行商业上的交易以降低成本。曾经辉煌过的比如亚马逊、8848都是典型的电子商务公司,虽然他们遇到了不同的挫折,但是电子商务是发展的大势所趋。因为电子商务不仅可以使销售方减少不必要的库存和店面,而且还可以解除一些业务时空上的限制,比如24小时营业。而JSP是一种目前比较流行而且成熟的技术,选择它作为电子商务的实现手段是一个明智的选择。  
          本文根据电子商务的需求,设计并实现了基于JSP技术的在线购书的电子商务网站,实现了不同权限用户对数据库的不同操作。本文将阐述在设计实现中所用到的技术与方案。  
  问题点数:100、回复次数:4Top

1 楼qieyj(温馨港湾)回复于 2003-06-03 10:03:57 得分 0

http://qieyj.myrice.com  
  的论坛  
  注册就有机会成为斑竹Top

2 楼wswhp(greenland)回复于 2003-06-03 14:00:19 得分 0

In   recent   years,   turn   the   applied   fast   development   along   with   Internet   and   worlds,   more   and   more   portraits   usage   other   has   no   the   national   boundary,   have   no   time   and   have   no   the   worth   and   convenient   environment   in   line   in   region   to   expand   to   operate   the   business.The   for   this   reason   electronic   commerce(   Electronic   Commerce/   EC)   is   popular   then   and   more   and   more,   more   and   more   business   enterprises   also   want   to   use   that   technique   proceeds   with   method   the   bargain   on   the   business   since   low   cost.Glorious   ever   over   of   for   example   Amazon,8848   are   all   irresistible   general   trend   that   typical   electronic   commerce   company,   although   they   met   the   different   frustrate,   the   electronic   commerce   is   a   development.Because   the   electronic   commerce   can   not   only   make   sell   the   square   reduces   the   otiose   stock   with   the   shop   front,   but   also   can   also   relieve   the   some   business   the   restrict   on   the   timespace,   for   example   24   hours   runs   business.But   the   JSP   is   a   kind   of   current   popular   and   mature   technique,   choose,   it   be   used   as   the   electronic   commerce   realizes   the   means   is   a   wise   choice.  
          This   text   according   to   the   need   of   the   electronic   commerce,   design   and   realizes   according   to   the   JSP   is   technical   and   on-line   to   buy   the   electronic   commerce   website   of   the   book,   realizes   different   legal   power   customer   to   the   different   operation   of   the   database.This   text   will   expatiate   at   design   to   realize   a   technique   for   using   and   project.  
  Top

3 楼leeloo(夫木)回复于 2003-06-03 14:33:05 得分 0

是不是用快译翻的?  
  Top

4 楼huangyi1920(huangyibao)回复于 2003-06-03 14:52:52 得分 100

Immutable   objects   have   a   number   of   properties   that   make   working   with   them   easier,   including   relaxed   synchronization   requirements   and   the   freedom   to   share   and   cache   object   references   without   concern   for   data   corruption.   While   immutability   may   not   necessarily   make   sense   for   all   classes,   most   programs   have   at   least   a   few   classes   that   would   benefit   from   being   immutable.   In   this   month's   Java   theory   and   practice,   Brian   Goetz   explains   some   of   the   benefits   of   immutability   and   some   guidelines   for   constructing   immutable   classes.   Share   your   thoughts   on   this   article   with   the   author   and   other   readers   in   the   accompanying   discussion   forum.   (You   can   also   click   Discuss   at   the   top   or   bottom   of   the   article   to   access   the   forum.)  
  An   immutable   object   is   one   whose   externally   visible   state   cannot   change   after   it   is   instantiated.   The   String,   Integer,   and   BigDecimal   classes   in   the   Java   class   library   are   examples   of   immutable   objects   --   they   represent   a   single   value   that   cannot   change   over   the   lifetime   of   the   object.  
   
  Benefits   of   immutability  
  Immutable   classes,   when   used   properly,   can   greatly   simplify   programming.   They   can   only   be   in   one   state,   so   as   long   as   they   are   properly   constructed,   they   can   never   get   into   an   inconsistent   state.   You   can   freely   share   and   cache   references   to   immutable   objects   without   having   to   copy   or   clone   them;   you   can   cache   their   fields   or   the   results   of   their   methods   without   worrying   about   the   values   becoming   stale   or   inconsistent   with   the   rest   of   the   object's   state.   Immutable   classes   generally   make   the   best   map   keys.   And   they   are   inherently   thread-safe,   so   you   don't   have   to   synchronize   access   to   them   across   threads.  
   
  Freedom   to   cache  
  Because   there   is   no   danger   of   immutable   objects   changing   their   value,   you   can   freely   cache   references   to   them   and   be   confident   that   the   reference   will   refer   to   the   same   value   later.   Similarly,   because   their   properties   cannot   change,   you   can   cache   their   fields   and   the   results   of   their   methods.  
   
  If   an   object   is   mutable,   you   have   to   exercise   some   care   when   storing   a   reference   to   it.   Consider   the   code   in   Listing   1,   which   queues   two   tasks   for   execution   by   a   scheduler.   The   intent   is   that   the   first   task   would   start   now   and   the   second   task   would   start   in   one   day.  
   
  Top

相关问题

  • 对字符串比较熟悉的同学进来看看------〉
  • 如何在5460同学录中加上动画或会动的字?
  • 同学送分
  • chinaren.com同学录上发布留言下边的随机数字图片是怎么生成的?
  • 牛虻同学立志刻苦学习英语,获得灰毛兔赞助的奖学金300分~~
  • 100分,同学录
  • 在编成绩表时有同学的名字是相同的但我又把名字作为主键,怎区分相同名字?
  • 同学的一封email
  • 共同学习使用softice!!!
  • 帮助后进同学

关键词

  • 电子商务
  • 技术
  • electronic commerce
  • 实现
  • 不同
  • business

得分解答快速导航

  • 帖主:leeloo
  • huangyi1920

相关链接

  • CSDN Blog
  • 技术文档
  • 代码下载
  • 第二书店
  • 读书频道

广告也精彩

反馈

请通过下述方式给我们反馈
反馈
提问
网站简介|广告服务|VIP资费标准|银行汇款帐号|网站地图|帮助|联系方式|诚聘英才|English|问题报告
北京创新乐知广告有限公司 版权所有, 京 ICP 证 070598 号
世纪乐知(北京)网络技术有限公司 提供技术支持
Copyright © 2000-2008, CSDN.NET, All Rights Reserved
GongshangLogo