代码搜索:boolean
找到约 10,000 项符合「boolean」的源代码
代码结果 10,000
www.eeworm.com/read/143587/12859195
java fieldlist.java
package Absyn;
import Symbol.Symbol;
public class FieldList extends Absyn {
public Symbol name;
public Symbol typ;
public FieldList tail;
public boolean escape = true;
public FieldList(
www.eeworm.com/read/244422/12866765
java cartfunction.java
package com.jspdev.util;
import com.jspdev.cart.*;
import com.jspdev.vo.*;
/**
*用于操作cart的静态函数
*/
public class CartFunction
{
/**
*删除购物车中的一个item
*/
public static boolean removeItemBy
www.eeworm.com/read/244379/12869895
pas upublic.pas
unit uPublic;
interface
uses
Windows, Messages,Sysutils, shlobj, Forms,DBClient, ADODB, DBGridEh;
function RegFileJoint(sCaption, sFile, sExeFile: string): Boolean;
function RegJointMe: B
www.eeworm.com/read/143505/12869949
pas xprocs.pas
unit xProcs;
{$D-}
interface
{.$DEFINE German}
{.$DEFINE English}
uses
{$IFDEF Win32} Windows, Registry, {$ELSE} WinTypes, WinProcs, {$ENDIF}
ShellAPI, Messages, Classes, Graphics;
www.eeworm.com/read/244228/12877586
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/244228/12877590
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/244228/12877616
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
www.eeworm.com/read/244228/12877627
java three.java
public class Three extends Root
{
private GameTable gTable;
private int x,y;
private int direct=1;
private int[] store;
public Three()
{
store=new int[15];
}
public bool
www.eeworm.com/read/244228/12877651
java root.java
public class Root//8个块的根类,具有一般性
{
public boolean begin()//初始化显示
{
return true;
}
public boolean down()//向下移动
{
return true;
}
public boolean left()//向左移动
{
return true;
www.eeworm.com/read/244228/12877680
java eight.java
public class Eight extends Root
{
private GameTable gTable;
private int x,y;
private int direct=1;
private int[] store;
public Eight()
{
store=new int[15];
}
public bool