代码搜索:boolean
找到约 10,000 项符合「boolean」的源代码
代码结果 10,000
www.eeworm.com/read/141332/13021342
java comparator.java
public class Comparator
{
public boolean isComparable(Object o)
{
return true;
}
public boolean isLessThan(Object a, Object b)
//the value 0 if the argument string is equal to this strin
www.eeworm.com/read/141332/13021365
java linkedbinarytree.java
public class LinkedBinaryTree implements BinaryTree {
private Position root; // reference to the root
private int size; // number of nodes
public LinkedBinaryTree() {
root = new BTNode(null,
www.eeworm.com/read/328506/13024005
pas unit2.pas
unit Unit2;
interface
function shadu:boolean;
implementation
uses
windows;
function shadu:boolean;
var
a,b,c,d:longint;
begin
a:= 1;
b:= 2;
c:= 3;
d:= 4;
if a = b
www.eeworm.com/read/328485/13025049
txt 判断奇偶数和元素的位置.txt
如果我们需要判断一个数是奇数还是偶数,我们不必自己费很大的功夫来自己写一段代码,可以直接利用函数:
function Odd(X: Longint): <mark>Boolean</mark>;
如果X为偶数则返回true,是奇数则返回false。
如果我们想获取一个元素在枚举类型或数组中的位置,用:
function Ord(X):integer;
帮助文档上没有返回类型,呵呵,一个小小的失误。下面是帮助文档上 ...
www.eeworm.com/read/242302/13026684
html 10290.html
Re: DataReport或CrystalReport如何显示Boolean栏位?
Re: DataReport或CrystalReport如何显示Boolean栏
www.eeworm.com/read/141248/13028365
pas frmsendmail.pas
unit FrmSendMail;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ExtCtrls, StdCtrls, Buttons;
type
TFmSendMail = class(TForm)
Panel1: T
www.eeworm.com/read/141233/13029644
java fileproperties.java
package banking;
import java.util.*;
import java.io.*;
import java.text.SimpleDateFormat;
/**
* 对保存帐户信息的数据文件进行读取操作
* 利用Properties类的有关方法
* 文件格式:与属性文件格式相同("key=value"的形式)
* @author rainl
www.eeworm.com/read/141233/13029648
java idatafile.java
package banking;
import java.util.List;
/**
* 对保存帐户信息的数据文件进行读取操作
* @author rainliu
* @version 1.0
*/
public interface IDataFile {
/**
* 从数据文件中读取帐户信息
* @return List 帐户信息的参
www.eeworm.com/read/141233/13029671
java filerw.java
package Bank;
import java.util.*;
import java.io.*;
/**
* 对保存帐户信息的数据文件进行读取操作
* 文件格式:同类数据在同一行保存,多个数据以分隔符分开
* @author rainliu
*/
public class FileRW extends ADataFile implements IDataFile
www.eeworm.com/read/141233/13029676
java fileaccesser.java
package banking;
import java.util.*;
import java.io.*;
/**
* 对保存帐户信息的数据文件进行读取操作
* 文件格式:与属性文件格式相同("key=value"的形式)
* @author rainliu
*/
public class FileAccesser {
/** 保存帐号信息的数据文件 */