代码搜索:boolean
找到约 10,000 项符合「boolean」的源代码
代码结果 10,000
www.eeworm.com/read/386489/8740398
java bomb.java
import javax.microedition.lcdui.Graphics;
public class Bomb
{
private static final int PER_S_CYC = 20;
private int posX;
private int posY;
private int mode;
private int remainCyc;
www.eeworm.com/read/386489/8740496
java~1~ bomb.java~1~
import javax.microedition.lcdui.Graphics;
public class Bomb
{
private static final int PER_S_CYC = 20;
private int posX;
private int posY;
private int mode;
private int remainCyc;
p
www.eeworm.com/read/386489/8740525
java~3~ bomb.java~3~
import javax.microedition.lcdui.Graphics;
public class Bomb {
private static final int PER_S_CYC = 20;
private int posX;
private int posY;
private int mode;
private int remainCyc;
www.eeworm.com/read/386489/8740585
java~2~ bomb.java~2~
import javax.microedition.lcdui.Graphics;
public class Bomb {
private static final int PER_S_CYC = 20;
private int posX;
private int posY;
private int mode;
private int remainCyc;
www.eeworm.com/read/386416/8750268
java blood.java
package com.sun;
import java.awt.*;
/**
* 小血块
* @author sun
*
*/
public class Blood {
int x,y,w,h;
int step=0;
Tanke tc;
/**
* 血块移动的位置轨迹
*/
private int[][]pos={{350,300},{360,3
www.eeworm.com/read/430396/8750665
bas fs.bas
Attribute VB_Name = "modFs"
'Returns a boolean - True if the file exists
Public Function FExists(OrigFile As String)
Dim fs
Set fs = CreateObject("Scripting.FileSystemObject")
FExists
www.eeworm.com/read/386327/8754051
java tank.java
/**
* Title:
* Description:
* Copyright: Copyright (c) 2003
* Company:
* @author not attributable
* @version 1.0
*/
public class Tank {
//需读入的数据
int x;
www.eeworm.com/read/386327/8754057
java item.java
/**
* Title:
* Description:
* Copyright: Copyright (c) 2003
* Company:
* @author not attributable
* @version 1.0
*/
public class Item {
//需读入的数据
int x;
www.eeworm.com/read/430197/8762131
pas registryunit.pas
unit RegistryUnit;
{$R-,T-,H+,X+}
interface
uses Windows;
type
TRegKeyInfo = record
NumSubKeys: Integer;
MaxSubKeyLen: Integer;
NumValues: Integer;
MaxValueLen: Inte
www.eeworm.com/read/430197/8762326
pas minireg.pas
unit MiniReg;
{
lightweight replacement for TRegistry. Does not use Classes or SysUtils. Intended
for space-limited applets where only the commonly used functions are necessary.
Returns Tr