代码搜索:boolean
找到约 10,000 项符合「boolean」的源代码
代码结果 10,000
www.eeworm.com/read/421576/10728675
java stack.java
package Syntax;
public class Stack {
private int maxSize;
private String[] stackArray;
private int top;
public Stack(int size)
{
maxSize=size;
stackArray=new String[maxSize];
www.eeworm.com/read/421576/10728689
java character.java
package Syntax;
//符号类
public class Character {
public String value;
public boolean isBegin=false;//是否为开始符
public boolean isEnd=false;//是否为终结符
}
www.eeworm.com/read/421576/10728695
java queue.java
package Syntax;
public class Queue {
private int maxSize=10;
private int increment=5;
private int[] queArray;
private int front;
private int rear;
private int current;
private void in
www.eeworm.com/read/350572/10731751
java bidinfo.java
package coreservlets.beans;
import coreservlets.*;
/** Bean that represents information about a bid at
* an auction site. Used to demonstrate redisplay of forms
* that have incomplete data
www.eeworm.com/read/350572/10731765
java insuranceinfo.java
package coreservlets.beans;
import coreservlets.*;
/** Simple bean that represents information needed to
* calculate an employee's insurance costs. Has String,
* int, and boolean propertie
www.eeworm.com/read/421239/10747825
java bufferdemo.java
import java.io.*;
public class BufferDemo {
public static void main(String[] arguments) {
int start = 0;
int finish = 255;
if (arguments.length > 1) {
s
www.eeworm.com/read/350346/10749356
java filetree.java
import javax.swing.*;
import javax.swing.tree.*;
import javax.swing.event.*;
import java.io.*;
/*
构造函数要求提供被调用的JFrame参数
完成文件树型结构
*/
public class FileTree extends JTree {
public Fi
www.eeworm.com/read/276301/10750611
java datatype.java
public class DataType
{
public static void main(String args[])
{
byte b1=120;
float f=1.2f;
boolean bo=true;
int j=266;
byte b2=(byte)j;
//System.out.println(b2);
byt
www.eeworm.com/read/276301/10750665
java bitdemo.java
public class BitDemo
{
public static void main(String args[])
{
int x=3;
int y=10;
System.out.println("x&y="+(x&y));
System.out.println("x|y="+(x|y));
System.out.println("x^y="