代码搜索:Behavior
找到约 3,820 项符合「Behavior」的源代码
代码结果 3,820
www.eeworm.com/read/238485/13882122
9 qmail-control.9
.TH qmail-control 5
.SH "NAME"
qmail-control \- qmail configuration files
.SH "INTRODUCTION"
You can change the behavior of the
.B qmail
system by modifying
.BR qmail 's
.I control files
in
.BR QMAILH
www.eeworm.com/read/117227/6105042
java abstractdisposer.java
/*
* 19:06:59 13/12/99
*
* AbstractDisposer.java - Offer an abstract dispose behavior
* Copyright (C) 2000 Romain Guy
* romain.guy@jext.org
* www.jext.org
*
* This program is free software; yo
www.eeworm.com/read/478118/6720197
java ex5(1).java
// exceptions/Ex5.java
// TIJ4 Chapter Exceptions, Exercise 5, page 452
/* Create you own resumption-like behavior using a while loop that repeats
* until an exception is no longer thrown.
*/
p
www.eeworm.com/read/158649/11595494
java daemons.java
//: c14:Daemons.java
// Daemonic behavior.
// {RunByHand}
import java.io.*;
class Daemon extends Thread {
private static final int SIZE = 10;
private Thread[] t = new Thread[SIZE];
publ
www.eeworm.com/read/344238/11897371
java ex5.java
// exceptions/Ex5.java
// TIJ4 Chapter Exceptions, Exercise 5, page 452
/* Create you own resumption-like behavior using a while loop that repeats
* until an exception is no longer thrown.
*/
p
www.eeworm.com/read/116603/14963571
java transmogrify.java
//: c07:Transmogrify.java
// From 'Thinking in Java, 2nd ed.' by Bruce Eckel
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
// Dynamically changing the behavior of
// an object via