1.存储的一些概念和术语 SCSI:小型计算机系统接口(Small Computer System Interface) FC:光纤通道(Fibre Channel) DAS:直连式存储(Direct Attached Storage) NAS:网络接入存储(Network At tached St ...
分类:
其他好文 时间:
2020-07-28 22:54:12
阅读次数:
110
简单工厂模式 遵守的原则 OOP七大原则 代码实现 //接口 public interface Car { void name(); } //实现接口,创建WuLing public class WuLing implements Car { @Override public void name() ...
分类:
其他好文 时间:
2020-07-28 22:30:38
阅读次数:
81
JDK动态代理和 CGLIB 代理 JDK动态代理:其代理对象必须是某个接口的实现,它是通过在运行期期间创建一个接口的实现类来完成对目标对象的代理。 代码示例 接口 public interface IUserDao { void save(); } 实现类 public class UserDao ...
分类:
其他好文 时间:
2020-07-28 00:21:49
阅读次数:
75
这里主要是对于IOC理论提出的一个认识 dao接口 public interface Fruit { String getFruit(); } dao接口的实现类 public class FruitImpl implements Fruit { public String getFruit() { ...
分类:
编程语言 时间:
2020-07-27 23:45:39
阅读次数:
72
实验目的:通过ISIS协议,实验全网互通 实验步骤: Step1:必打命令 <Huawei>undo terminal monitor <Huawei>system-view [Huawei]sysname R7[R7]user-interface console 0[R7-ui-console0] ...
分类:
其他好文 时间:
2020-07-27 23:44:07
阅读次数:
136
创建相关的类(这里是直接在之前类的基础上进行修改) package com.guan.dao; public interface Fruit { String getFruit(); } package com.guan.dao; public class FruitImpl implements ...
分类:
编程语言 时间:
2020-07-27 23:43:21
阅读次数:
69
题目来源:http://codeforces.com/contest/158/problem/B After the lessons n groups of schoolchildren went outside and decided to visit Polycarpus to celebrat ...
分类:
其他好文 时间:
2020-07-27 16:07:20
阅读次数:
89
重分发: AR1配置信息 <Huawei>undo terminal monitor <Huawei>system-view Enter system view, return user view with Ctrl+Z. [Huawei]user-interface console 0 [Huaw ...
分类:
其他好文 时间:
2020-07-27 13:45:56
阅读次数:
81
整个MySQL Server由以下组成 Connection Pool : 连接池组件 Management Services & Utilities : 管理服务和工具组件 SQL Interface : SQL接口组件 Parser : 查询分析器组件 Optimizer : 优化器组件 Cac ...
分类:
数据库 时间:
2020-07-26 23:12:40
阅读次数:
81
关键字:interface 声明方法: 访问修饰符 interface 接口名 (extends 其他接口名){ //变量 //方法 } 接口支持多继承, 声明方法类似c++ 标记接口: 定义: 没有任何方法和属性的接口,仅表明它的类属于一个特定的类型,供其他代码来测试允许做一些事情. 作用: 建立 ...
分类:
编程语言 时间:
2020-07-26 01:53:31
阅读次数:
71