代码搜索:boolean
找到约 10,000 项符合「boolean」的源代码
代码结果 10,000
www.eeworm.com/read/177415/9456153
h jpeg.h
//===========================================================================
// JPEG.H
// This file contains JPEG library functions.
//-------------------------------------------------------------
www.eeworm.com/read/373376/9458981
java smdlmodification.java
// FrontEnd Plus for JAD
// DeCompiled : smDLModification.class
package sms;
// Referenced classes of package sms:
// modDL, smDL, Member, Address
class smDLModification extend
www.eeworm.com/read/373369/9460176
java constraints.java
//: annotations/database/Constraints.java
package annotations.database;
import java.lang.annotation.*;
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Constrain
www.eeworm.com/read/373369/9460200
java atunitexample1.java
//: annotations/AtUnitExample1.java
package annotations;
import net.mindview.atunit.*;
import net.mindview.util.*;
public class AtUnitExample1 {
public String methodOne() {
return "This
www.eeworm.com/read/373369/9460202
java atunitexternaltest.java
//: annotations/AtUnitExternalTest.java
// Creating non-embedded tests.
package annotations;
import net.mindview.atunit.*;
import net.mindview.util.*;
public class AtUnitExternalTest extends At
www.eeworm.com/read/373369/9460206
java passwordutils.java
//: annotations/PasswordUtils.java
import java.util.*;
public class PasswordUtils {
@UseCase(id = 47, description =
"Passwords must contain at least one numeric")
public boolean validateP
www.eeworm.com/read/373369/9460212
java whiletest.java
//: control/WhileTest.java
// Demonstrates the while loop.
public class WhileTest {
static boolean condition() {
boolean result = Math.random() < 0.99;
System.out.print(result + ", ")
www.eeworm.com/read/373369/9460232
java frog.java
//: frogbean/Frog.java
// A trivial JavaBean.
package frogbean;
import java.awt.*;
import java.awt.event.*;
class Spots {}
public class Frog {
private int jumps;
private Color color;
www.eeworm.com/read/373369/9460401
java allops.java
//: operators/AllOps.java
// Tests all the operators on all the primitive data types
// to show which ones are accepted by the Java compiler.
public class AllOps {
// To accept the results of
www.eeworm.com/read/373369/9460850
java intgenerator.java
//: concurrency/IntGenerator.java
public abstract class IntGenerator {
private volatile boolean canceled = false;
public abstract int next();
// Allow this to be canceled:
public void c