代码搜索:boolean
找到约 10,000 项符合「boolean」的源代码
代码结果 10,000
www.eeworm.com/read/208134/6942808
java globaloptions.java
package shared;
import java.lang.*;
/** This file processes a series of static, global options used by the MLC++
* library. These options are read as super-nuisance options--they are never
* p
www.eeworm.com/read/124675/6947629
pas utabhost.pas
unit uTabHost;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ComCtrls;
type
TTabDockHost = class(TForm)
PageControl1: TPageControl;
www.eeworm.com/read/124675/6947632
pas uconjoinhost.pas
unit uConjoinHost;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, uDockForm;
type
TConjoinDockHost = class(TForm)
procedure FormClose(Send
www.eeworm.com/read/373321/6947794
java sortable.java
package shared;
import java.lang.*;
/** Interface for classes that need to be sorted in a specific manner.
*/
public interface Sortable{
boolean lessThan(Sortable other);
boolean Equa
www.eeworm.com/read/373321/6947797
java globaloptions.java
package shared;
import java.lang.*;
/** This file processes a series of static, global options used by the MLC++
* library. These options are read as super-nuisance options--they are never
* p
www.eeworm.com/read/320351/6955155
java one.java
package russiagame;
public class One
extends Root { //第一个方块
private GameTable gTable; //创建游戏桌子
private int x, y; //方块坐上角现在在桌子上的位置
private int direct = 1; //第一个角度
private in
www.eeworm.com/read/320351/6955156
java four.java
package russiagame;
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];
www.eeworm.com/read/320351/6955161
java two.java
package russiagame;
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];
www.eeworm.com/read/320351/6955163
java three.java
package russiagame;
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
www.eeworm.com/read/320351/6955165
java root.java
package russiagame;
public class Root {
public boolean begin() { //初始化显示
return true;
}
public boolean down() { //向下移动
return true;
}
public boolean l