代码搜索:boolean
找到约 10,000 项符合「boolean」的源代码
代码结果 10,000
www.eeworm.com/read/320605/13421868
java terminationcondition.java
//: c04:TerminationCondition.java
// Using finalize() to detect an object that
// hasn't been properly cleaned up.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. S
www.eeworm.com/read/320605/13421901
java allops.java
//: c03:AllOps.java
// Tests all the operators on all the primitive data types
// to show which ones are accepted by the Java compiler.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
//
www.eeworm.com/read/320605/13421942
java frog.java
//: frogbean:Frog.java
// A trivial JavaBean.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
package frogbean;
import java.
www.eeworm.com/read/320605/13422033
java testarrays2.java
//: c11:TestArrays2.java
// Test and demonstrate Arrays2 utilities.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
import co
www.eeworm.com/read/320605/13422093
java switch.java
//: c09:Switch.java
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
public class Switch {
private boolean state = false;
www.eeworm.com/read/320605/13422317
java booleangenerator.java
//: com:bruceeckel:util:BooleanGenerator.java
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
package com.bruceeckel.util;
pu
www.eeworm.com/read/320553/13424287
pas dbflatlistbox.pas
unit dbFlatListBox;
interface
uses Windows, SysUtils, Messages, Classes, Controls, Forms, TFlatEditUnit,
Graphics, Menus, StdCtrls, ExtCtrls, Db, Mask, DBCtrls,
TFlatListBoxUnit;
t
www.eeworm.com/read/320501/13425753
java snakemodel.java
import java.util.*;
import javax.swing.*;
class SnakeModel implements Runnable{
GreedSnake gs;
boolean[][] matrix;
LinkedList nodeArray = new LinkedList();
Node food;
int maxX;
i
www.eeworm.com/read/320282/13429472
java employee.java
package dal;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.PreparedStatement;
public class Employee
{
//添加员工信息
public static boolean add(int d_id,String name,String
www.eeworm.com/read/320282/13429474
java department.java
package dal;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
public class Department
{
//增加部门信息
public static boolean add(String name,String remark