摘要:
原题:Problem Description You may have heard of the book '2001 - A Space Odyssey' by Arthur C. Clarke, or the film of the same name by Stanley Kubrick. In it a spaceship is sent from Earth to Saturn. The crew is put into stasis for the long flight, only two men are awake, and the ship is contro 阅读全文
摘要:
/** * */package iSword;/** * @author chenguangjian/iSword 2013-3-30 * */import iSword.data_basics;public class calcu_base { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub calcu_base cb=new calcu_base(); cb.ratio_series(100, 8); cb... 阅读全文
摘要:
1 ,软件结构发展过程中的3个阶段:Model1模式,Model2模式,MVC模式1>Model1最重要的特点就是没有分层的概念,也就是说把界面和业务逻辑的处理放在一个文件中来完成.缺点:1表现层和业务逻辑层混合在一起了,非常乱2在实际开发过程中,不利于多人协同开发.3不利于后期的维护优点:1简单,开发速度比较快2比较适合开发小型项目2>Model2分层模式:把界面和业务逻辑分开编写,好处就是结构清晰,利于分工开发.有些书上把这种分层模式称为MV模式,即M-->Model(业务逻辑层),V-->View(界面层)在开发中如何将Model1模式的程序改成Model2:1, 阅读全文
摘要:
经过一次修改后,从新审核通过了.下载地址:https://itunes.apple.com/cn/app/id621202715?mt=8此版本为免费应用,欢迎大家下载安装使用. 联系方式:weinyzhou86@gmail.com QQ:514540005 版权所有,禁止转载. 发布自:http://blog.csdn.net/weinyzhou/article/details/8741678 阅读全文
摘要:
有一篇很好的文章介绍vim如何配置及vim的众多插件如何使用《手把手教你把Vim改装成一个IDE编程环境(图文)》依照里面的介绍,给自己配了一下vim,留此以作总结和备忘。 syntax enablesyntax onset history=300set autoread"----------Hight Light Current Line----------------------"set cursorlinehi CursorLine cterm=NONE ctermbg=darkred ctermfg=white guibg=darkred guifg=whitehi 阅读全文