03 2018 档案

摘要:UML中的6大关系相关英文及音标: 依赖关系 dependency > 关联关系 association ______> 聚合关系 aggregation ______◇ 组合关系 Composition______◆ 实现 realization △ 泛化 generalization △ UML 阅读全文
posted @ 2018-03-18 18:57 Alamps 阅读(2356) 评论(0) 推荐(0) 编辑
摘要:虚拟机加载类的途径 1、由 new 关键字创建一个类的实例 在由运行时刻用 new 方法载入 如:Dog dog = new Dog(); 2、调用 Class.forName() 方法 通过反射加载类型,并创建对象实例 如:Class clazz = Class.forName(“Dog”); Object dog =clazz.newInstance(); 3、调用某个 ClassLoade... 阅读全文
posted @ 2018-03-10 09:13 Alamps 阅读(3298) 评论(0) 推荐(0) 编辑
摘要:package com.bjsxt.base; class Sigleton{ private Sigleton(){}; private static Sigleton instance = new Sigleton(); public static Sigleton getInstance(){ return instance; } } p... 阅读全文
posted @ 2018-03-09 23:39 Alamps 阅读(188) 评论(0) 推荐(0) 编辑