代码搜索:boolean
找到约 10,000 项符合「boolean」的源代码
代码结果 10,000
www.eeworm.com/read/436507/7769136
java puzzler.java
package phz;
import static java.util.Arrays.*;
public class Puzzler{
public static final int SIZE =9;
private boolean[][] fixed =new boolean[SIZE][SIZE];
private int[][] numb
www.eeworm.com/read/436097/7776484
pas atxunpack_dll.pas
unit ATxUnpack_Dll;
interface
function FUnpackAll(const fn, sdir: string): boolean;
function FUnpackSingle(const fn, sdir, fnSingle: string): boolean;
implementation
uses
SysUtils, U
www.eeworm.com/read/436097/7776488
pas atxtoolbarlist.pas
unit ATxToolbarList;
interface
uses
Controls, Classes, StdCtrls, ComCtrls, Menus;
const
cToolbarButtonsMax = 100;
type
PToolbarButtonRec = ^TToolbarButtonRec;
TToolbarButtonRec
www.eeworm.com/read/436097/7776501
pas unrardll.pas
unit UnrarDll;
interface
function UnrarAll(const fn, dir: string): boolean;
function UnrarSingle(const fn, dir, fn1: string): boolean;
implementation
uses
Windows, SysUtils, RAR, Cla
www.eeworm.com/read/436097/7776552
pas uformview.pas
//-----------------------------------------------------
{$I ATViewerOptions.inc} //ATViewer options.
{$I ATStreamSearchOptions.inc} //ATStreamSearch options.
{$I Compilers.inc} //
www.eeworm.com/read/436097/7776581
pas uformviewfindprogress.pas
unit UFormViewFindProgress;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms,
StdCtrls, ComCtrls, ATBinHex, ATViewer, ExtCtrls,
TntStdCtrls,
ATStreamSea
www.eeworm.com/read/274500/7776827
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/274500/7776830
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/274500/7776843
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/274500/7776846
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