代码搜索:boolean
找到约 10,000 项符合「boolean」的源代码
代码结果 10,000
www.eeworm.com/read/356810/10220964
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
www.eeworm.com/read/356561/10224564
java keyword.java
import javax.swing.text.Segment;
/**
*
*/
/**
* @author LightingMan
*
*/
public class KeyWord
{
public KeyWord(){
}
public static
www.eeworm.com/read/356561/10224623
java attrib.java
import javax.swing.text.Segment;
/**
*
*/
/**
* @author LightingMan
*
*/
class Attrib
{
public Attrib(){
}
public static boolean
www.eeworm.com/read/356247/10234135
txt day13.txt
I/O流
流的概念:程序与数据来源之间的桥梁
流的分类:
按数据方向分:输入流和输出流
输入流:InputStream/Reader
OutputStream/Writer
按数据类型分:字节流和字符流
字节流:InputStream/OutputStream
字符流:Reader/Writer
按流的功能分:节点流和处理流
www.eeworm.com/read/356033/10238517
java one.java
//One.java
/**其他的几个文件的结构与此文件雷同,只是方块的形状不同,
**可否向四方移动,旋转的判断函数不同****/
//竖线形状
public class One extends Root//第一个方块
{
private GameTable gTable;//创建游戏框架
private int x,y;//方块坐上角现在在框架里的位置
p
www.eeworm.com/read/356033/10238520
java four.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];
}
www.eeworm.com/read/356033/10238528
java two.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];
www.eeworm.com/read/356033/10238530
java three.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];
www.eeworm.com/read/356033/10238533
java root.java
//Root.java
public class Root//8个块的根类,具有一般性
{
public boolean begin()//初始化显示
{
return true;
}
public boolean down()//向下移动
{
return true;
}
public boolean left()//向左移动
{