代码搜索:Interface
找到约 10,000 项符合「Interface」的源代码
代码结果 10,000
www.eeworm.com/read/160392/10536022
hys l0001.hys
SYSTEM tank {
INTERFACE {
PARAMETER {
REAL hmax = 1; }
INPUT {
REAL h [0, hmax]; }
OUTPUT {
BOOL y; }
} /* end interface */
IMPLE
www.eeworm.com/read/160392/10536052
hys l0008.hys
SYSTEM outflow {
INTERFACE {
OUTPUT {
REAL flow; }
INPUT {
BOOL v1, v2; }
} /* end of interface */
IMPLEMENTATION {
OUTPUT {
flow = 10 * (REAL v1
www.eeworm.com/read/160392/10536076
hys l0007.hys
SYSTEM watertank {
INTERFACE {
STATE {
REAL h; }
INPUT {
REAL Q; }
PARAMETER {
REAL hmax = 0.3;
REAL k = 1; }
} /* end interf
www.eeworm.com/read/352425/10553551
java outer13.java
// innerclasses/Outer13.java
// TIJ4 Chapter Innerclasses, Exercise 13, page 361
/* Repeat Exercise 9 using an anonymous inner class.
* (Exercise 9: Create an interface with at least one method, an
www.eeworm.com/read/159990/10581274
java client.java
//Interface
interface callback
{
void call(int param);
}
class Client implements callback {
public void call(int p) {
System.out.println("Callback called with " + p) ;
}
}
cla
www.eeworm.com/read/159990/10581280
java testface.java
//Interface
interface callback
{
void callback(int param);
}
class client implements callback {
public void callback(int p) {
System.out.println("Callback called with " + p) ;
}
}
www.eeworm.com/read/278011/10585386
txt 转-如何学习java.txt
作者:lovefan
email: lovefan@cmmail.com
日期:8/1/2001 4:08:34 PM
:(如何学习Java呢?) 枫叶国游子 2001-07-04 12:37:58
我可以结合自己的经验大致给你说一说,希望对你有所帮助,少走些弯路。
学习Java其实应该上升到如何学习程序设计这种境界,其实学习程序设计又是接受一种编程思想。每一种语言的程序设计思想大 ...
www.eeworm.com/read/350222/10757773
pas upkdmintr.pas
unit upkDMIntr;
interface
uses
ADODB;
type
IpkDM = Interface
['{BE1B4342-13AC-4C87-8ED3-F9C6FAABA045}']
function GetConnection: TADOConnection;
end;
implementation
en
www.eeworm.com/read/420813/10774042
java hello.java
import java.rmi.Remote;
//Remote Interface
public interface hello extends Remote {
String hello() throws java.rmi.RemoteException;
}
www.eeworm.com/read/420813/10774058
java hello.java
import java.rmi.Remote;
//Remote Interface
public interface hello extends Remote {
String hello() throws java.rmi.RemoteException;
}