上一页 1 ··· 65 66 67 68 69 70 71 72 73 ··· 108 下一页
摘要: /// 当前月有多少天 /// </summary> /// <param name="y"></param> /// <param name="m"></param> /// <returns></returns> public static int HowMonthDay(int y, int 阅读全文
posted @ 2020-02-23 12:02 陈彦斌 阅读(635) 评论(0) 推荐(0)
摘要: 1、先查询plsql编码格式 select userenv('language')from dual 2、新建用户变量,变量名=NLS_LANG,变量值,刚才sql查询的结果 保存后,重启plsql即可 阅读全文
posted @ 2020-02-19 10:23 陈彦斌 阅读(4290) 评论(0) 推荐(0)
摘要: Start With (树查询) 问题描述: 在数据库中, 有一种比较常见得 设计模式, 层级结构 设计模式, 具体到 Oracle table中, 字段特点如下: ID, DSC, PID; 三个字段, 分别表示 当前标识的 ID(主键), DSC 当前标识的描述, PID 其父级ID, 比较典型 阅读全文
posted @ 2020-02-17 10:48 陈彦斌 阅读(276) 评论(0) 推荐(0)
摘要: Linked List 用多少就申请多少内存。 链表是一种链式存储的线性表,所有元素的内存地址不一定连续的。 接口设计 代码实现 MyList.java(接口) package com.cyb; public interface MyList<E> { /** * 元素未找到 */ static f 阅读全文
posted @ 2020-02-16 22:16 陈彦斌 阅读(288) 评论(0) 推荐(0)
摘要: 什么是数据结构? 线性表 数组 动态数组设计 项目结构 代码实现 CybArrayList.java package com.cyb; /** * 自定义ArrayList数组 * * @author chenyanbin * */ public class CybArrayList { /** * 阅读全文
posted @ 2020-02-14 21:33 陈彦斌 阅读(945) 评论(1) 推荐(1)
上一页 1 ··· 65 66 67 68 69 70 71 72 73 ··· 108 下一页