计算类中方法运行时间的几种方案:

Client:

 package com.tn.proxy;

 public class Client {
public static void main(String[] args) {
/* Car car=new Car();
car.move(); */ //通过继承计算方法的运行时间
/* CarTimeByExtends ctp=new CarTimeByExtends();
ctp.move(); */ //通过聚合计算类中方法运行时间
/* Car car=new Car();
CarTimeByAggregate ctba=new CarTimeByAggregate(car);
ctba.getCarRunningTime(); */
}
}

Movable:

 package com.tn.proxy;

 public interface Movable {
void move();
void stop();
}

Car:

 package com.tn.proxy;

 import java.util.Random;

 public class Car implements Movable {

     @Override
public void move() {
/**
* 方法内的两段注释代码为给move()方法增加日志及计算方法执行时间。
*/
/* long start=System.currentTimeMillis();
System.out.println("Car is start moving..."+start); */
System.out.println("Car is moving...");
try {
Thread.sleep(new Random().nextInt(1500));
} catch (InterruptedException e) {
e.printStackTrace();
}
/* long end=System.currentTimeMillis();
System.out.println("Car is stop moving..."+end);
System.out.println("Car running time is "+(end-start)); */
} @Override
public void stop() {
System.out.println("Car is stopped.");
} }

CarTimeByExtends:

 package com.tn.proxy;
/**
* 通过继承计算类中方法的运行时间
* @author xiongjiawei
*
*/
public class CarTimeByExtends extends Car{
@Override
public void move() {
long start=System.currentTimeMillis();
super.move();
long end=System.currentTimeMillis();
System.out.println("Car running time is:"+(end-start));
}
}

CarTimeByAggregate:

 package com.tn.proxy;
/**
* 通过聚合计算方法运行时间
* @author xiongjiawei
*
*/
public class CarTimeByAggregate {
Car car; public CarTimeByAggregate(Car car){
this.car=car;
} public void getCarRunningTime(){
long start=System.currentTimeMillis();
car.move();
long end=System.currentTimeMillis();
System.out.println("Car running time is:"+(end-start));
}
}

通过静态代理实现以上功能:

Client:

 package com.tn.proxy;

 public class Client {
public static void main(String[] args) {
Car car=new Car();
CarTimeProxy ctp=new CarTimeProxy(car);
CarLogProxy clp=new CarLogProxy(ctp);
clp.move();
/* 运行结果:Car被时间包装,时间被日志包装
logging...
start time:1494730233358
Car is moving...
end time:1494730234835
logged.
*/
System.out.println("--------------------------------------");
Movable clp2=new CarLogProxy(car);
Movable ctp2=new CarTimeProxy(clp2);
ctp2.move();
/*
运行结果:时间包装日志,日志包装car
start time:1494730473747
logging...
Car is moving...
logged.
end time:1494730474995
*/
}
}

Movable:

 package com.tn.proxy;

 public interface Movable {
void move();
}

Car:

 package com.tn.proxy;

 import java.util.Random;

 public class Car implements Movable {

     @Override
public void move() {
System.out.println("Car is moving...");
try {
Thread.sleep(new Random().nextInt(1500));
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}

CarTimeProxy:

 package com.tn.proxy;

 public class CarTimeProxy implements Movable{
Movable movable;
public CarTimeProxy(Movable movable){
this.movable=movable;
}
@Override
public void move() {
long start=System.currentTimeMillis();
System.out.println("start time:"+start);
movable.move();
long end=System.currentTimeMillis();
System.out.println("end time:"+end);
}
}

CarLogProxy:

 package com.tn.proxy;

 public class CarLogProxy implements Movable {
Movable movable; public CarLogProxy(Movable movable){
this.movable=movable;
} @Override
public void move() {
System.out.println("logging...");
movable.move();
System.out.println("logged.");
} }

利用反射动态加载:

 package com.tn.proxy2;

 import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
import java.net.URL;
import java.net.URLClassLoader; import javax.tools.JavaCompiler;
import javax.tools.JavaCompiler.CompilationTask; import com.tn.proxy.Car;
import com.tn.proxy.Movable; import javax.tools.StandardJavaFileManager;
import javax.tools.ToolProvider; public class Test {
public static void main(String[] args) throws IOException, ClassNotFoundException, NoSuchMethodException, SecurityException, InstantiationException, IllegalAccessException, IllegalArgumentException, InvocationTargetException {
String rt="\r\t";
String str=
"package com.tn.proxy;"+rt+ "public class CarTimeProxy implements Movable{"+rt+
" Movable movable;"+rt+
" public CarTimeProxy(Movable movable){"+rt+
" this.movable=movable;"+rt+
" }"+rt+
" @Override"+rt+
" public void move() {"+rt+
" long start=System.currentTimeMillis();"+rt+
" System.out.println(\"start time:\"+start);"+rt+
" movable.move();"+rt+
" long end=System.currentTimeMillis();"+rt+
" System.out.println(\"end time:\"+end);"+rt+
" }"+rt+
"}"; //源代码文件生成
String fileName=System.getProperty("user.dir")
+"/src/com/tn/proxy/CarTimeProxy.java";
// System.out.println(fileName);
File f=new File(fileName);
FileWriter fw=new FileWriter(f);
fw.write(str);
fw.flush();
fw.close(); //编译
JavaCompiler compiler=ToolProvider.getSystemJavaCompiler();
// System.out.println(compiler.getClass().getName());
StandardJavaFileManager fMgr=compiler.getStandardFileManager(null, null, null);
Iterable iterable=fMgr.getJavaFileObjects(fileName);
CompilationTask ct=compiler.getTask(null, fMgr, null, null, null, iterable);
ct.call();
fMgr.close(); //载入内存,创建类对象实例
URL[] urls=new URL[]{new URL("file:/"+System.getProperty("user.dir")+"/src")};
URLClassLoader ul=new URLClassLoader(urls);
Class c=ul.loadClass("com.tn.proxy.CarTimeProxy");
ul.close();
// System.out.println(c); Constructor constructor=c.getConstructor(Movable.class);
Movable movable=(Movable)constructor.newInstance(new Car());
movable.move();
}
}

【java设计模式】代理模式的更多相关文章

  1. Java设计模式-代理模式之动态代理(附源代码分析)

    Java设计模式-代理模式之动态代理(附源代码分析) 动态代理概念及类图 上一篇中介绍了静态代理,动态代理跟静态代理一个最大的差别就是:动态代理是在执行时刻动态的创建出代理类及其对象. 上篇中的静态代 ...

  2. JAVA 设计模式 代理模式

    用途 代理模式 (Proxy) 为其他对象提供一种代理以控制对这个对象的访问. 代理模式是一种结构型模式. 结构

  3. Java设计模式の代理模式

    目录  代理模式 1.1.静态代理   1.2.动态代理 1.3.Cglib代理 代理模式 代理(Proxy)是一种设计模式,提供了对目标对象另外的访问方式;即通过代理对象访问目标对象.这样做的好处是 ...

  4. Java设计模式 - 代理模式

    1.什么是代理模式: 为另一个对象提供一个替身或占位符以访问这个对象. 2.代理模式有什么好处: (1)延迟加载 当你需要从网络上面查看一张很大的图片时,你可以使用代理模式先查看它的缩略图看是否是自己 ...

  5. Java设计模式—代理模式

    代理模式(Proxy Pattern)也叫做委托模式,是一个使用率非常高的模式. 定义如下:     为其他对象提供一种代理以控制对这个对象的访问. 个人理解:        代理模式将原类进行封装, ...

  6. Java设计模式——代理模式实现及原理

    简介 Java编程的目标是实现现实不能完成的,优化现实能够完成的,是一种虚拟技术.生活中的方方面面都可以虚拟到代码中.代理模式所讲的就是现实生活中的这么一个概念:中介. 代理模式的定义:给某一个对象提 ...

  7. Java设计模式-代理模式(Proxy)

    其实每个模式名称就表明了该模式的作用,代理模式就是多一个代理类出来,替原对象进行一些操作,比如我们在租房子的时候回去找中介,为什么呢?因为你对该地区房屋的信息掌握的不够全面,希望找一个更熟悉的人去帮你 ...

  8. Java设计模式--代理模式+动态代理+CGLib代理

    静态代理 抽象主题角色:声明真实主题和代理主题的共同接口. 代理主题角色:代理主题内部含有对真实主题的引用,从而在任何时候操作真实主题对象:代理主题提供一个与真实主题相同的接口,以便在任何时候都可以代 ...

  9. Java设计模式——代理模式

    public interface People { public void work(); } public class RealPeople implements People { public v ...

  10. Java 之 设计模式——代理模式

    设计模式——代理模式 一.概述 1.代理模式 (1)真实对象:被代理的对象 (2)代理对象:代理真实对象的 (3)代理模式:代理对象代理真实对象,达到增强真实对象功能的目的 二.实现方式 1.静态代理 ...

随机推荐

  1. 记PHP面向对象编程

    访问控制 public(公开的):可以在类中.子类中.类外访问. protected(受保护的):只能在类本身及子类中访问. private(私有的):只能在声明他们的类中进行访问,私有的类成员不能被 ...

  2. centos搭建java web服务器

    1.安装jdk7 //检查jdk是否已经安装 [root@iZwz9catu2mrq92b07d1d0Z ~]# yum list installed | grep java java--openjd ...

  3. Java日志框架那些事儿

    文章首发于[博客园-陈树义],点击跳转到原文Java日志框架那些事儿. 在项目开发过程中,我们可以通过 debug 查找问题.而在线上环境我们查找问题只能通过打印日志的方式查找问题.因此对于一个项目而 ...

  4. Nginx简介与安装

    | 简介 Nginx是一个高性能的HTTP和反向代理服务器,可以作为负载均衡服务器,也是一个IMAP/POP3/SMTP服务器.它的特点是占有内存少,并发能力强.目前有很多大型公司都在使用Nginx, ...

  5. ThinkPHP中处理验证码不显示问题

    在调用验证码之前加上 ob_clean(); 不显示验证码的代码: public function verify(){               $Verify = new \Think\Verif ...

  6. 如何编写gitignore文件

    原文链接:https://www.cnblogs.com/jingtyu/p/6831772.html 为什么要有.gitignore文件 项目中经常会生成一些Git系统不需要追踪(track)的文件 ...

  7. leetcode算法题2: 合并两个二叉树。递归,如何切入并保持清醒?

    /* Given two binary trees and imagine that when you put one of them to cover the other, some nodes o ...

  8. CCF-201604-1-折点计数

    问题描述 试题编号: 201604-1 试题名称: 折点计数 时间限制: 1.0s 内存限制: 256.0MB 问题描述: 问题描述 给定n个整数表示一个商店连续n天的销售量.如果某天之前销售量在增长 ...

  9. Dubbo源码学习--服务发布(DubboProtocol、Exporter)

    在Dubbo服务发布的整体流程一文中,只是分析了服务发布的整体流程,具体的细节还没有进一步分析.本节将继续分析服务暴露的过程.在ServiceConfig中通过一句话即可暴露服务,如下: Export ...

  10. 班级博客客户端Beta阶段发布说明

    班级博客客户端Beta阶段发布说明 NewTeam 2017/12/18 项目 博客园班级博客Android客户端 目录 发布方式和发布地址 新功能 修复的缺陷 对运行环境的要求 安装方法 已知的问题 ...