代码搜索:boolean
找到约 10,000 项符合「boolean」的源代码
代码结果 10,000
www.eeworm.com/read/178391/9400800
java iterator.java
package foundations;
public interface Iterator
{
public void remove ();
public boolean hasNext();
public Object next();
}
www.eeworm.com/read/178378/9404648
java doubledispatch.java
//: C25:DoubleDispatch.java
// From Thinking in C++, 2nd Edition
// at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Using multiple dispatching to hand
www.eeworm.com/read/178378/9404654
java typedbin.java
//: C25:TypedBin.java
// From Thinking in C++, 2nd Edition
// at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Vector that knows how to grab the right
www.eeworm.com/read/178239/9412430
java jmexprparse.java
package MultiScriptParse.Parse;
import java.util.*;
/**
* Title:
* Description:
* Copyright: Copyright (c) 2006
* Company:
* @author not attributable
* @
www.eeworm.com/read/374134/9420510
java testmail.java
import java.util.*;
import javax.mail.*;
import javax.mail.internet.*;
import java.util.Date;
import javax.activation.*;
import java.io.*;
public class testmail {
private Mime
www.eeworm.com/read/374083/9421572
h newmatap.h
//$$ newmatap.h definition file for matrix package applications
// Copyright (C) 1991,2: R B Davies
#ifndef MATRIXAP_LIB
#define MATRIXAP_LIB 0
#include "newmat.h"
/**********
www.eeworm.com/read/177878/9429028
java busroute.java
//Written by Jeffrey Liu
//Before adding a point to bus route
//isInterchage(Point) & isOnRoad(Point) need to be checked by GUI
//these two are methods provided by mapData class
//then GUI need to
www.eeworm.com/read/177866/9429825
asn h245v7.asn
MULTIMEDIA-SYSTEM-CONTROL DEFINITIONS AUTOMATIC TAGS ::=
BEGIN
-- Export all symbols
-- ===================================================================================
-- Top level Messa
www.eeworm.com/read/177866/9429827
asn ro.asn
Remote-Operations-Information-Objects {joint-iso-itu-t remote-operations(4) informationObjects(5) version2(1) }
DEFINITIONS ::=
BEGIN
-- exports everything
OPERATION ::= CLASS
{
&ArgumentType
www.eeworm.com/read/373877/9430437
java database.java
数据库联接类
package classsource;
import java.sql.*;
public class Database {
public static Connection cn;
public static Statement st;
public static ResultSet rs;
public stat