上一页 1 2 3 4 5 6 7 8 ··· 13 下一页
摘要: 接上:http://www.cnblogs.com/liu-wang/p/8973273.html 3 元组 4 字典 4.1 字典的介绍 <2>软件开发中的字典 变量info为字典类型: 说明: 字典和列表一样,也能够存储多个数据 列表中找某个元素时,是根据下标进行的 字典中找某个元素时,是根据' 阅读全文
posted @ 2018-04-30 14:48 8亩田 阅读(366) 评论(0) 推荐(0) 编辑
摘要: 1 字符串 1.1 下标和切片 1.2 切片 1.3 字符串常见操作 如有字符串mystr = 'hello world itcast and itcastcpp',以下是常见的操作 <1>find 检测 str 是否包含在 mystr中,如果是返回开始的索引值,否则返回-1 <2>index 跟f 阅读全文
posted @ 2018-04-30 14:37 8亩田 阅读(1351) 评论(0) 推荐(0) 编辑
摘要: 1 基础知识 1.1 注释的分类 1.2 变量以及类型 变量定义 变量类型 注意:怎样知道一个变量的类型呢? 在python中,只要定义了一个变量,而且它有数据,那么它的类型就已经确定了,不需要咱们开发者主动的去说明它的类型,系统会自动辨别 可以使用type(变量的名字),来查看变量的类型 在pyt 阅读全文
posted @ 2018-04-30 10:55 8亩田 阅读(384) 评论(0) 推荐(0) 编辑
摘要: 客户列表 1 分析 2 书写步骤 1.封装PageBean 2.书写Action 3.书写Service 4.书写Dao 5.完成strutx以及spring的配置 6.书写前台list.jsp页面 BaseDao封装 抽取BaseDao 3 BaseDao设计思路 BaseDao接口书写 Base 阅读全文
posted @ 2018-04-23 17:20 8亩田 阅读(269) 评论(0) 推荐(0) 编辑
摘要: question: Rotate an array of n elements to the right by k steps. For example, with n = 7 and k = 3, the array [1,2,3,4,5,6,7] is rotated to [5,6,7,1,2 阅读全文
posted @ 2018-04-18 22:34 8亩田 阅读(362) 评论(2) 推荐(1) 编辑
摘要: 三大框架架构(整合原理) 1 导包(41个) 1.1 hibernate hibernate/lib/required hibernate/lib/jpa | java persist api java的持久化规范(接口) 数据库驱动 1.2 struts2 struts-blank.war/WEB 阅读全文
posted @ 2018-04-17 22:25 8亩田 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 2 svn介绍 2.1 项目管理中的版本控制问题 通常软件开发由多人协作开发,如果对代码文件、配置文件、文档等没有进行版本控制,将会出现很多问题: > 备份多个版本,占用磁盘空间大> 解决代码冲突困难 > 容易引发BUG > 难于追溯问题代码的修改人和修改时间> 难于恢复至以前正确版本> 无法进行权 阅读全文
posted @ 2018-04-17 17:19 8亩田 阅读(941) 评论(0) 推荐(0) 编辑
摘要: Plus One question: Given a non-negative integer represented as a non-empty array of digits, plus one to the integer. You may assume the integer do not 阅读全文
posted @ 2018-04-16 19:09 8亩田 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 1 spring整合JDBC 1.1 概述 spring提供了很多模板整合Dao技术 spring中提供了一个可以操作数据库的对象.对象封装了jdbc技术. JDBCTemplate => JDBC模板对象 与DBUtils中的QueryRunner非常相似. 1.2 步骤 导包 4+2 sprin 阅读全文
posted @ 2018-04-15 18:08 8亩田 阅读(234) 评论(0) 推荐(0) 编辑
摘要: question:Remove Duplicates from Sorted Array Given a sorted array nums, remove the duplicates in-place such that each element appear only once and ret 阅读全文
posted @ 2018-04-14 09:47 8亩田 阅读(196) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 13 下一页