代码搜索:实现

找到约 10,000 项符合「实现」的源代码

代码结果 10,000
www.eeworm.com/read/137687/13305837

java calculatorimpl.java

//Implementation //编写远程服务的具体实现 import java.rmi.server.UnicastRemoteObject; public class CalculatorImpl extends UnicastRemoteObject implements Calculator { // 这个实现必须有一个显式的构造函数,并且要抛出一个Remo
www.eeworm.com/read/322749/13368339

cpp flights.cpp

// FLIGHTS.h : CFLIGHTS 类的实现 // CFLIGHTS 实现 // 代码生成在 天盟Oracle9i服务器, 22:09 #include "stdafx.h" #include "FLIGHTS.h" //#include "FLIGHTDLG.h" IMPLEMENT_DYNAMIC(CFlights, CRecordset) C
www.eeworm.com/read/322749/13368345

cpp hotels.cpp

// HOTELS.h : CHotels 类的实现 // CHotels 实现 // 代码生成在 天盟Oracle9i服务器, 10:33 #include "stdafx.h" #include "HOTELS.h" IMPLEMENT_DYNAMIC(CHotels, CRecordset) CHotels::CHotels(CDatabase* pdb)
www.eeworm.com/read/322749/13368380

cpp cars.cpp

// Cars.h : CCars 类的实现 // CCars 实现 // 代码生成在 天盟Oracle9i服务器, 12:14 #include "stdafx.h" #include "Cars.h" IMPLEMENT_DYNAMIC(CCars, CRecordset) CCars::CCars(CDatabase* pdb) : CRecordse
www.eeworm.com/read/320865/13417205

txt 123.txt

文件头: //**************************************************************** //该程序实现循环码的两种编码方式,K级和N-K级编码器的仿真程序 //同时实现能纠正一位错误的循环码的译码; //************************************************************
www.eeworm.com/read/315430/13542730

cs ithransprotocol.cs

using System; using System.Collections.Generic; using System.Text; using System.Collections; using System.Data; using System.Windows.Forms; namespace LC_XMLControl { //实现这个接口的实现类的类名必须为C
www.eeworm.com/read/119338/6090794

java ex_5_5_1.java

/* *文件名:ex_5_5_1.java *说 明:通过接口引用变量调用接口方法 */ //定义接口 interface Callback { void callback(int param); } // 定义实现接口的类 class Client implements Callback { // 实现了Callback接口 public void
www.eeworm.com/read/225004/6674264

cpp luzhijian.cpp

//用循环单链表实现队列的基本操作 //算法的实现: #include #include #include typedef int DateType; struct Node; typedef struct Node *PNode; struct Node//结点结构 { DateType info; P
www.eeworm.com/read/348418/11594721

cpp luzhijian.cpp

//用循环单链表实现队列的基本操作 //算法的实现: #include #include #include typedef int DateType; struct Node; typedef struct Node *PNode; struct Node//结点结构 { DateType info; P
www.eeworm.com/read/260456/11724084

c yuns1.c

/*************************************************************/ /* Filename: yuns1.c 功能: 实现键入两个数,然后再根据键入的算子来实现加、减、乘、除   /*程序于2007年11月29日在程序yuns.c基础上修改 */ /***********************************