代码搜索:boolean
找到约 10,000 项符合「boolean」的源代码
代码结果 10,000
www.eeworm.com/read/373369/9460945
java pool.java
//: concurrency/Pool.java
// Using a Semaphore inside a Pool, to restrict
// the number of tasks that can use a resource.
import java.util.concurrent.*;
import java.util.*;
public class Pool
www.eeworm.com/read/373369/9461274
java initialvalues.java
//: initialization/InitialValues.java
// Shows default initial values.
import static net.mindview.util.Print.*;
public class InitialValues {
boolean t;
char c;
byte b;
short s;
int
www.eeworm.com/read/373369/9461282
java terminationcondition.java
//: initialization/TerminationCondition.java
// Using finalize() to detect an object that
// hasn't been properly cleaned up.
class Book {
boolean checkedOut = false;
Book(boolean checkOut)
www.eeworm.com/read/177272/9461414
txt ejbcontext.txt
public interface javax.ejb.EJBContext {
public javax.ejb.EJBHome getEJBHome();
public javax.ejb.EJBLocalHome getEJBLocalHome();
public boolean getRollbackOnly();
public void setRol
www.eeworm.com/read/177265/9462466
pas systemform.pas
unit SystemForm;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
DialogBaseForm, StdCtrls, Buttons, ExtCtrls, Spin, ComCtrls;
type
TfrmSystem
www.eeworm.com/read/177265/9462531
pas unit4.pas
//***********************************************
//WinIO的声明单元
//***********************************************
unit Unit4;
interface
function InstallWinIoDriver(const PathName: String; Fla
www.eeworm.com/read/177184/9466119
java condition.java
/**
* Just a helper class.
*/
public abstract class Condition {
abstract boolean test(TreeNode p);
}
/**
*
*/
class IsTreeNode extends Condition {
boolean tes
www.eeworm.com/read/177162/9466524
java one.java
public class One extends Root//第一个方块
{
private GameTable gTable;//创建游戏桌子
private int x,y;//方块坐上角现在在桌子上的位置
private int direct=1;//第一个角度
private int[] store;//储存待判断是否可以移动的周围必要的坐标标志
pu
www.eeworm.com/read/177162/9466526
java four.java
public class Four extends Root
{
private GameTable gTable;
private int x,y;
private int direct=1;
private int[] store;
public Four()
{
store=new int[15];
}
public boolea
www.eeworm.com/read/177162/9466529
java two.java
public class Two extends Root
{
private GameTable gTable;
private int x,y;
private int direct=1;
private int[] store;
public Two()
{
store=new int[15];
}
public boolean b