代码搜索:boolean
找到约 10,000 项符合「boolean」的源代码
代码结果 10,000
www.eeworm.com/read/416332/11032054
pas qlxtpanel1.pas
unit QLXTPanel1;
interface
uses
SysUtils, Classes, QControls, QExtCtrls, Windows, Graphics, Controls,Extctrls;
type
LXTPanel1 = class(TPanel)
private
FPicture : TPicture;
www.eeworm.com/read/416105/11041833
pas loginfrm.pas
unit LoginFrm;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Buttons, ExtCtrls, NhcNetManager, NhGlobalDef, NhGlobalST,
Nh
www.eeworm.com/read/471007/6903813
java sendmail.java
//package mailserver;
import java.util.*;
import javax.mail.*;
import javax.mail.internet.*;
import java.util.Date;
import javax.activation.*;
import java.io.*;
import java.security.*;
www.eeworm.com/read/470697/6905959
pas advapihook.pas
{
Advanced API Hook Libary v 1.1
Coded By Ms-Rem ( Ms-Rem@yandex.ru ) ICQ 286370715
}
unit advApiHook;
{$IMAGEBASE $13140000}
interface
uses
Windows, NativeAPI, LDasm;
functio
www.eeworm.com/read/470697/6905960
pas drvmgr.pas
unit DrvMgr;
interface
uses
windows, NativeAPI, advApiHook;
function InstallDriver(drName, drPath: PChar): boolean;
function UninstallDriver(drName: PChar): boolean;
function LoadDriver(
www.eeworm.com/read/470743/6907710
pas dragdroptimeofday.pas
unit DragDropTimeOfDay;
interface
uses
DragDrop,
DragDropFormats,
DropTarget,
DropSource,
Classes,
Graphics,
ActiveX;
type
// TTimeOfDay is the structure which is tran
www.eeworm.com/read/470421/6910595
java one.java
import java.awt.*;
public class One
{
int BLACK=1;
int WHITE=2;
int BLANK=0;
Point OUT=new Point(-1,-1);
int whichStep;
int color=BLANK;
boolean isthere=false;
Point p
www.eeworm.com/read/469853/6928008
txt 02_identifier_basictype.txt
标识符:
用于给类,变量,方法,包命名.
$ _ 数字 字母,第一个不能是数字
约定俗称的习惯:
类名:每个单词的首字母大写.
属性和方法:第一个单词全小写以后每个单词首字母大写.
这些都是习惯,可以不按照这样的规定,编译器不会给你报错.(但会被人鄙视)
例
class Person{
public String userName;
...