代码搜索:INTERFACES
找到约 10,000 项符合「INTERFACES」的源代码
代码结果 10,000
www.eeworm.com/read/241189/13164370
inf winpppoe.inf
;******************************************************************************
; PPP over Ethernet Protocol
; Windows 98 NDIS Intermediate Driver INF
; written by Robert Schlabbach (normanb@cs.TU-
www.eeworm.com/read/138758/13216848
java months.java
//: c08:Months.java
// Using interfaces to create groups of constants.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
packag
www.eeworm.com/read/138758/13216903
java iinterface.java
//: c08:IInterface.java
// Nested classes inside interfaces.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
public interfa
www.eeworm.com/read/240258/13228915
pro tcp_send.pro
######################################################################
# Automatically generated by qmake (1.05a) Thu Jan 18 16:26:21 2007
#############################################################
www.eeworm.com/read/240255/13228949
pro tcp_recv.pro
######################################################################
# Automatically generated by qmake (1.05a) Thu Jan 18 16:27:31 2007
#############################################################
www.eeworm.com/read/138595/13230008
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/325023/13231401
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/325023/13231407
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/325023/13231410
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