代码搜索:Process

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

代码结果 10,000
www.eeworm.com/read/169058/9883389

java apply.java

//: interfaces/classprocessor/Apply.java package interfaces.classprocessor; import java.util.*; import static net.mindview.util.Print.*; class Processor { public String name() { return g
www.eeworm.com/read/169058/9883401

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/169058/9883402

java stringprocessor.java

//: interfaces/interfaceprocessor/StringProcessor.java package interfaces.interfaceprocessor; import java.util.*; public abstract class StringProcessor implements Processor{ public String name
www.eeworm.com/read/169058/9883403

java processor.java

//: interfaces/interfaceprocessor/Processor.java package interfaces.interfaceprocessor; public interface Processor { String name(); Object process(Object input); } ///:~
www.eeworm.com/read/169058/9883404

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/169058/9883443

java processfiles.java

//: net/mindview/util/ProcessFiles.java package net.mindview.util; import java.io.*; public class ProcessFiles { public interface Strategy { void process(File file); } private Strat
www.eeworm.com/read/169058/9883473

java osexecute.java

//: net/mindview/util/OSExecute.java // Run an operating system command // and send the output to the console. package net.mindview.util; import java.io.*; public class OSExecute { public st
www.eeworm.com/read/364958/9885846

cls isubclass.cls

VERSION 1.0 CLASS BEGIN MultiUse = -1 'True Persistable = 0 'NotPersistable DataBindingBehavior = 0 'vbNone DataSourceBehavior = 0 'vbNone MTSTransactionMode = 0 'NotAnMTSObject
www.eeworm.com/read/364932/9886643

c semaph.c

/* * Provide an simpler and easier to understand interface to the System V * semaphore system calls. There are 7 routines available to the user: * * id = sem_create(key, initval); # create with i
www.eeworm.com/read/364932/9886984

c hello.c

#include "apue.h" int main(void) { printf("hello world from process ID %d\n", getpid()); exit(0); }