代码搜索:proxy

找到约 9,859 项符合「proxy」的源代码

代码结果 9,859
www.eeworm.com/read/492070/6423896

cs proxytester.cs

using System; using System.Collections.Generic; using System.Text; using System.Net; using System.IO; namespace proxyTest { class ProxyTester { public ProxyTester()
www.eeworm.com/read/492070/6423898

cs proxyurl.cs

using System; using System.Collections.Generic; using System.Text; namespace proxyTest { class ProxyUrl { public string proxy; public int port; public ProxyU
www.eeworm.com/read/490336/6454719

cmd genproxy.cmd

java org.apache.axis.wsdl.WSDL2Java -p proxy CS575Service.wsdl
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/488446/6487243

ini installer.ini

[String Resources] ;------------------------------------------------------------------------------ ; UI strings ;------------------------------------------------------------------------------ NEX
www.eeworm.com/read/486925/6520749

java subject.java

package com.javapatterns.proxy; abstract public class Subject { abstract public void request(); }
www.eeworm.com/read/485453/6562337

html ext.dd.panelproxy.html


www.eeworm.com/read/482241/6630421

java client.java

/* * Created on 2005-5-11 * * TODO To change the template for this generated file go to * Window - Preferences - Java - Code Style - Code Templates */ package com.test.pattern.struct.proxy;
www.eeworm.com/read/479983/6674282

cpp main.cpp

/******************************************************************** created: 2006/07/26 filename: Main.cpp author: 李创 http://www.cppblog.com/converse/ purpose: Proxy模式的测
www.eeworm.com/read/479394/6693775

+

当我们需要使用的对象很复杂或者需要很长时间去构造,这时就可以使用代理模式(<mark>Proxy</mark>)。例如:如果构建一个对象很耗费时间和计算机资源,代理模式(<mark>Proxy</mark>)允许我们控制这种情况,直到我们需要使用实际的对象。一个代理(<mark>Proxy</mark>)通常包含和将要使用的对象同样的方法,一旦开始使用这个对象,这些方法将通过代理(<mark>Proxy</mark>)传递给实际的对象。 一些可以使用代理模式(<mark>Proxy</ma ...