代码搜索:Adapter
找到约 10,000 项符合「Adapter」的源代码
代码结果 10,000
www.eeworm.com/read/238749/13327344
cpp adapter.cpp
//Adapter.cpp
#include "Adapter.h"
#include
Target::Target()
{
}
Target::~Target()
{
}
void Target::Request()
{
std::cout
www.eeworm.com/read/238749/13327348
plg adapter.plg
Build Log
--------------------Configuration: Adapter - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\ADMIN
www.eeworm.com/read/238749/13327349
h adapter.h
#ifndef _ADAPTER_H_
#define _ADAPTER_H_
class Target
{
public:
Target();
virtual ~Target();
virtual void Request();
protected:
private:
};
class Adaptee
{
public:
Adaptee()
www.eeworm.com/read/238749/13327351
opt adapter.opt
www.eeworm.com/read/238749/13327352
ncb adapter.ncb
www.eeworm.com/read/313005/13598807
java adapter.java
package com.javapatterns.adapter.objectAdapter;
public class Adapter implements Target {
public Adapter(Adaptee adaptee){
super();
this.adaptee = adaptee;
}
public vo
www.eeworm.com/read/313005/13598810
java adapter.java
package com.javapatterns.adapter.classAdapter;
public class Adapter extends Adaptee implements Target {
/**
* Class Adaptee doesn't contain operation sampleOperation2.
*/
pub
www.eeworm.com/read/305602/13764799
cdi adapter.cdi
www.eeworm.com/read/305422/13770046