代码搜索:Implement
找到约 10,000 项符合「Implement」的源代码
代码结果 10,000
www.eeworm.com/read/134303/13998287
txt 16e.txt
package bank;
import java.rmi.*;
import javax.ejb.*;
public class SavingsAccount implements EntityBean
{
EntityContext entityContext;
public String ejbCreate() throws CreateException, Remot
www.eeworm.com/read/203690/15353313
txt test.txt
This is a test file used by the RTC SDK Server lesson 3, which shows you
how to implement events for a DataProvider to server small files from a server.
Best Regards,
Danijel Tkalcec
www.eeworm.com/read/203690/15353335
txt test.txt
This is a test file used by the RTC SDK Server lesson 3, which shows you
how to implement events for a DataProvider to server small files from a server.
Best Regards,
Danijel Tkalcec
www.eeworm.com/read/101297/15461370
-
作者:rick1126
email: rickzhang@sina.com
日期:7/7/2001 6:31:58 PM
方法之一:
使用传统的回调函数方式, 区别在于前者需要客户端传递一个实现函数的指针, 后者则需要传递一个服务端公开的回调接口.
限制条件:
1. 使用前绑定
2. 虽然函数实现在客户端, 不过服务端除了在IDL里面声明方法
www.eeworm.com/read/112509/15484125
c memcmp.c
#include
/*lint -e613
memcmp is defined here because some vendors don't implement
it, strcmp, or strncmp correctly; they must treat the bytes
as unsigned chars.
*/
int memcmp(const
www.eeworm.com/read/112509/15484144
c strncmp.c
#include
/*lint -e613
strncmp is defined here because some vendors don't implement
it, strcmp, or memcmp correctly; they must treat the bytes
as unsigned chars.
*/
int strncmp(const
www.eeworm.com/read/112070/15493940
cpp school.cpp
// school.cpp: implementation of the school class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "school.h"
#include
#includ
www.eeworm.com/read/111982/15497098
txt java代码编写的30条建议 .txt
JAVA代码编写的30条建议
列举了大量有用的建议,帮助大家进行低级程序设计,并提供了代码编写的一般性指导:
(1) 类名首字母应该大写。字段、方法以及对象(句柄)的首字母应小写。对于所有标识符,其中包含的所有单词都应紧靠在一起,而且大写中间单词的首字母。例如:
ThisIsAClassName
thisIsMethodOrFieldName
若在定义中出现了常数初始 ...
www.eeworm.com/read/110993/15520860
cpp cppcheck.cpp
//: C18:Cppcheck.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Configures .h & .cpp files
www.eeworm.com/read/110378/15535143
java graphic.java
/**
* A graphic interface that proxy and real object should implement
* so a proxy can proxy several real object
*/
public interface Graphic {
public abstract void Draw();
}