JAVA 对象引用,以及对象赋值
摘要:关键字: java对象 引用 Java对象及其引用 关于对象与引用之间的一些基本概念。 初学Java时,在很长一段时间里,总觉得基本概念很模糊。后来才知道,在许多Java书中,把对象和对象的引用混为一谈。可是,如果我分不清对象与对象引用, 那实在没法很好地理解下面的面向对象技术。把自己的一点认识写下
阅读全文
posted @
2017-03-16 10:44
羽林.Luouy
阅读(371)
推荐(0)
Java配置----JDK开发环境搭建及环境变量配置
摘要:http://www.cnblogs.com/smyhvae/p/3788534.html
阅读全文
posted @
2017-03-02 11:32
羽林.Luouy
阅读(210)
推荐(0)
转)mybatis实战教程(mybatis in action),mybatis入门到精通
摘要:mybatis实战教程(mybatis in action),mybatis入门到精通 http://limingnihao.iteye.com/blog/781671 http://blog.csdn.net/techbirds_bao/article/details/9233599/ MyBat
阅读全文
posted @
2017-03-02 11:31
羽林.Luouy
阅读(215)
推荐(0)
Java中的Map List Set等集合类
摘要:Map List Set等集合类: 一、概述 在JAVA的util包中有两个所有集合的父接口Collection和Map,它们的父子关系: +Collection 这个接口extends自 --java.lang.Iterable接口 ├+List(接口 代表有序,可重复的集合。列表) │├ Arr
阅读全文
posted @
2017-03-01 09:56
羽林.Luouy
阅读(834)
推荐(0)
JAVA List合并集合
摘要:import java.util.ArrayList; import java.util.List; public class test { public static void main(String[] args) throws Exception { /*测试合并两个类型相同的list*/ List list1 = new ArrayL...
阅读全文
posted @
2017-03-01 09:39
羽林.Luouy