代码搜索:INTERFACES
找到约 10,000 项符合「INTERFACES」的源代码
代码结果 10,000
www.eeworm.com/read/384827/7104714
java highpass.java
//: interfaces/filters/HighPass.java
package interfaces.filters;
public class HighPass extends Filter {
double cutoff;
public HighPass(double cutoff) { this.cutoff = cutoff; }
public Wave
www.eeworm.com/read/384827/7104715
java waveform.java
//: interfaces/filters/Waveform.java
package interfaces.filters;
public class Waveform {
private static long counter;
private final long id = counter++;
public String toString() { return
www.eeworm.com/read/384827/7104717
java interfacecollision.java
//: interfaces/InterfaceCollision.java
package interfaces;
interface I1 { void f(); }
interface I2 { int f(int i); }
interface I3 { int f(); }
class C { public int f() { return 1; } }
class
www.eeworm.com/read/384827/7104729
java filterprocessor.java
//: interfaces/interfaceprocessor/FilterProcessor.java
package interfaces.interfaceprocessor;
import interfaces.filters.*;
class FilterAdapter implements Processor {
Filter filter;
public F
www.eeworm.com/read/384827/7104731
java processor.java
//: interfaces/interfaceprocessor/Processor.java
package interfaces.interfaceprocessor;
public interface Processor {
String name();
Object process(Object input);
} ///:~
www.eeworm.com/read/384827/7104732
java apply.java
//: interfaces/interfaceprocessor/Apply.java
package interfaces.interfaceprocessor;
import static net.mindview.util.Print.*;
public class Apply {
public static void process(Processor p, Object
www.eeworm.com/read/140893/7117121
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/140893/7117144
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/376262/7130520
pro draw.pro
TEMPLATE = app
DESTDIR = $(QPEDIR)/bin
CONFIG += qt warn_on release
HEADERS =
SOURCES = draw.cpp
INTERFACES =
TARGET = draw
INCLUDEPATH += /usr/local/include/opencv
LIBS += /usr/local/lib/libcv.
www.eeworm.com/read/332978/7141954
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 =