代码搜索:INTERFACES

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

代码结果 10,000
www.eeworm.com/read/419052/10888443

html ifaces.html

Supported Network Interfaces
www.eeworm.com/read/271686/10984745

txt 转:学不会的java,消不了的忧愁!(1).txt

作者:NOVEMBER RAIN email: haoy@dongyu.com.cn 日期:2001-5-9 17:16:20 学不会的JAVA,消不了的忧愁! 发言者:jigenghua 时 间:2001/03/11 17:23:51 来 自:www.javaunion.org ----------------------------------------------
www.eeworm.com/read/469501/6929321

h ipifcons.h

/*++ Copyright (c) 1995-1999 Microsoft Corporation Module Name: ipifcons.h Abstract: Constants needed for the Interface Object */ #ifndef __IPIFCONS_H__ #define __IP
www.eeworm.com/read/414302/7068910

anjuta calculator.anjuta

www.eeworm.com/read/276599/7073077

java messagecracker.java

/** * @version 1.20 07 May 1997 * @author Cay Horstmann */ import java.awt.*; import java.awt.event.*; import java.lang.reflect.*; public class MessageCracker implements MouseListene
www.eeworm.com/read/384827/7104708

java months.java

//: interfaces/Months.java // Using interfaces to create groups of constants. package interfaces; public interface Months { int JANUARY = 1, FEBRUARY = 2, MARCH = 3, APRIL = 4, MAY =
www.eeworm.com/read/384827/7104709

xml build.xml

build.xml for the source code for
www.eeworm.com/read/384827/7104711

java bandpass.java

//: interfaces/filters/BandPass.java package interfaces.filters; public class BandPass extends Filter { double lowCutoff, highCutoff; public BandPass(double lowCut, double highCut) { lo
www.eeworm.com/read/384827/7104712

java lowpass.java

//: interfaces/filters/LowPass.java package interfaces.filters; public class LowPass extends Filter { double cutoff; public LowPass(double cutoff) { this.cutoff = cutoff; } public Wavefor
www.eeworm.com/read/384827/7104713

java filter.java

//: interfaces/filters/Filter.java package interfaces.filters; public class Filter { public String name() { return getClass().getSimpleName(); } public Waveform process(Waveform inpu