搜索结果
找到约 34 项符合
Boolean 的查询结果
按分类筛选
单片机编程 16 16点阵显示汉字原理及显示程序
16 16点阵显示汉字原理及显示程序
#include "config.h"
#define                DOTLED_LINE_PORT        PORTB #define            &nbs ...
Applet SelectionDemo also has code (not included in the preceding snippet) that changes the table s selecti
SelectionDemo also has code (not included in the preceding snippet) that changes the table s selection orientation. By changing a couple of boolean values, you can make the table allow either column selections or individual cell selections, instead of row selections.
书籍源码 delphi 自定义网络函数:unit net interface uses sysutils ,windows ,dialogs ,winsock ,classes
delphi 自定义网络函数:unit net
interface
uses
sysutils
,windows
,dialogs
,winsock
,classes
,comobj
,wininet
//得到本机的局域网ip地址
function getlocalip(var localip:string): boolean
//通过ip返回机器名
function getnamebyipaddr(ipaddr: string var macname: string): boolean
//获取网络 ...
Delphi控件源码 unit Other interface Uses Windows,tlhelp32,PsAPI type PStrData = ^TStrData TStrData
unit Other
interface
Uses Windows,tlhelp32,PsAPI
type
PStrData = ^TStrData
TStrData = record
Ident: Integer
Str: string
end
TUseInfo=record
QQ,
Mail,
Page:string
DL:boolean
end
TSendMailInfo=record
IPAddress,
FAddress,
FName,
FPW,
FCName,
FCPW:string //发信邮箱检 ...
软件设计/软件工程 Visual Basic 6.0可以通过调用API函数格式化一个磁盘
Visual Basic 6.0可以通过调用API函数格式化一个磁盘,无论是软盘还是硬盘。
打开一个新的项目(工程1) ,如果你没有更改过缺省模式,那么Visual Basic 6.0会自动添加一个form1文件,在form1上添加一个命令控件,将下面的代码拷入。
Option Explicit
Private Declare Function SHFormatDrive Lib"shell32"( ByVal Hend ...
编译器/解释器 编译原理词法和语法分析
编译原理词法和语法分析,体内容是产生一个二元式文本文件,扩展名为dyd,可将Pascal程序(测试程序)分解成为一个一个的单词,并查“单词符号与种别对照表”得出其种别,用一数字表示,范围1-56(52-56分别对应保留字integer、real、boolean、char)。 ...
其他 问题描述:编写一个JAVA程序
问题描述:编写一个JAVA程序,用面向对象设计的方法编写一个电话卡的类。包括卡号、密码、余额、拨入号码等
b)基本要求:类的属性有卡号、密码、余额、拨入号码,电话卡的常用操作可以用连接电话方法、返回余额方法与通电话方法来实现。
c)方法功能描述:
构造方法(PhoneCard(卡号,密码,余额,拨入号码))可以完成属性 ...
Delphi/CppBuilder Delphi6.0函数大全
Delphi6.0函数大全,Delphi程序员的至爱。∷图书简介∷
电子图书名:Delphi6函数大全 Delphi6函数大全(1) <> 首部 function AnsiResemblesText(const AText, AOther: string): Boolean $[StrUtils.pas功能 返回两个字符串是否相似说明 ANSI(American National Standards Institute)美国国家标准协会 不区分大小写参考 fun ...
其他 武林DLL注入源码 VB调用 Private Declare Function CallHotKey Lib "wulin.dll" (ByVal hWnd As Long, ByVal hotke
武林DLL注入源码 VB调用
Private Declare Function CallHotKey Lib "wulin.dll" (ByVal hWnd As Long, ByVal hotkey As Long) As Boolean
Private Declare Function CallBase Lib "wulin.dll" (ByVal hWnd As Long, ByVal action As Long) As Boolean
CallHotKey(窗体句柄,HotKey) HotKey ====0---------17 分别是0-----9 ...
书籍源码 Floyd-Warshall算法描述 1)适用范围: a)APSP(All Pairs Shortest Paths) b)稠密图效果最佳 c)边权可正可负 2)算法描述: a)初始化:d
Floyd-Warshall算法描述
1)适用范围:
a)APSP(All Pairs Shortest Paths)
b)稠密图效果最佳
c)边权可正可负
2)算法描述:
a)初始化:dis[u,v]=w[u,v]
b)For k:=1 to n
For i:=1 to n
For j:=1 to n
If dis[i,j]>dis[i,k]+dis[k,j] Then
Dis[I,j]:=dis[I,k]+dis[k,j]
c)算法结束:dis即为所有点对的最短路径矩阵
3)算法小 ...