代码搜索:AOP
找到约 735 项符合「AOP」的源代码
代码结果 735
www.eeworm.com/read/290606/8472752
m fig511.m
% Generates Fig 5.11
% Computer Controlled Systems (3rd ed)
% Author: B. Wittenmark
% Last edit: 1997-07-02
% Copyright (c) 1996 by K. J. 舠tr鰉, B. Wittenmark and
% Department of Automatic Control, Lun
www.eeworm.com/read/387007/8713049
hh device.hh
/* -*- c++ -*- ---------------------------------------------------------------
Copyright (C) 2005, SWECO, All Rights Reserved.
Definition of the device descriptor
$Id$
Author: Zsolt Mol
www.eeworm.com/read/174714/9575952
c dg.c
#include
#define d define
#d b12(x) 12 x
#d a13(x) x 13
#d a16(x) x 16
#d a32(x) x 32
#d acb(x) x]
#d acc(x) x}
#d aco(x) x:
#d bco(x) :x
#d acp(x) x)
#d bef(x) EOF x
#d aeq(x) x=
#d afo(x
www.eeworm.com/read/469004/6982938
txt exception.txt
- 高效的Java异常处理
Java开发人员可以做出的最重要的架构性决策之一就是如何使用Java异常模型。Java异常一直以来就是社群中许多争议的靶子。有人争论到,在Java语言中的异常检查已是一场失败的试验。本文将辨析,失败的原因不在于Java异常模型,而在于Java类库的设计者未能充分了解到方法失败的两个基本原因。
本文倡导一种对异常条件本质的思考方式,并描述一些有助于设计的模式 ...
www.eeworm.com/read/468035/6998231
java hello.java
package test.aop;
public interface Hello {
public abstract String say(String name);
}
www.eeworm.com/read/113186/6134058
java jdkdynamicproxytests.java
/*
* Copyright 2002-2004 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
www.eeworm.com/read/113186/6134087
java cglibproxytests.java
/*
* Copyright 2002-2004 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
www.eeworm.com/read/489640/6467869
java main.java
import org.springframework.aop.Advisor;
import org.springframework.aop.aspectj.AspectJExpressionPointcut;
import org.springframework.aop.framework.ProxyFactory;
import org.springframework.aop.suppo
www.eeworm.com/read/488127/6497067
txt spring2.txt
十、spring最有价值的两个功能?
ioc(inverse of control)/di:控制返转/依赖注入
将类与类的依赖关系写在配置文件中,程序在运行时
根据配置文件动态加载所依赖的类,让类与类之间的依赖解藕合。
强藕合:
List al=new ArrayList();
弱一点的藕合:
IFacade facade=FacadeFactory.g
www.eeworm.com/read/488127/6497077
txt 问题2.txt
1、spring原理?
2、动态代理?
3、反射
什么是类的返射?
如何得到一个类说明?
如何得到一个方法并唤起它?
4、spring的三种注入方式是什么?
5、spring的核心接口及核类配置文件是什么?
6、spring配置文件中的主要标签是什么?写一个小实例?
7、什么是spring的ioc?
8、<mark>aop</mark>是什么?作用?名词及特点?
9、描述struts&sprin ...