搜索结果
找到约 279 项符合
Add-ons 的查询结果
Java编程 Hibernate: A Developer s Notebook shows you how to use Hibernate to automate persistence: you write
Hibernate: A Developer s Notebook shows you how to use Hibernate to automate persistence: you write natural Java objects and some simple configuration files, and Hibernate automates all the interaction between your objects and the database. You don t even need to know the database is there, and you ...
其他书籍 ESRIMapObjectsLT 2 and MicrosoftVisual Basic6 to build an application that uses maps. Display a map
ESRIMapObjectsLT 2 and MicrosoftVisual Basic6 to build an application that uses maps.
Display a map with multiple layers.
Control panning and zooming.
Create a toolbar control.
Base the display of map layers on scale.
Perform spatial and logical queries.
Display features with thematic renderers.
Add ...
C/C++语言编程 全景图像和多光谱图像融合
PixelFusion.dsp
    This file (the project file) contains information at the project level and
    is used to build a single project or subproject. Other users can share the
    project (.dsp) file, but they should export the makefiles locally.
PixelFusion.h
  &nb ...
汇编编程 16进制转十进制
DATAS SEGMENT
w dw 0
keybuf db 255
     db 0
     db 255 dup(0)      ;定义键盘输入需要的缓冲区
DATAS ENDS
STACKS SEGMENT
db 200 dup(?)
STACKS ENDS
CODES SEGMENT
ASSUME CS:CODES,DS:DATAS,SS:STACKS
START:
MOV AX,DATAS
MOV DS,AX
mov dx,offset keybuf   ...
Windows编程 Delphi 泛型容器 TDictionary 的用法 Demo
Collection of key-value pairs. 
TDictionary represents a generic collection of key-value pairs. 
This class provides a mapping from a collection of keys to a collection of values. When you create a TDictionary object, you can specify various combinations of initial capacity, equality ope ...
单片机编程 7143_keilC51v612完全解密版
        keil C51 v6.12 完全解密版的安装说明
     安装方法是先将V6.12安装程序用复制到某个目录下,如复制到D:\keilC51
 然后执行D:\keilC51\setup\setup.exe 安装程序,选择安装Eval Version版进
 行安装。
 注册码:K199U-20071-12A9U
     当出 ...
Linux/uClinux/Unix编程 GoAhead Webs 2.1.5
=====================================
GoAhead WebServer 2.1.8 Release Notes
=====================================
.. NOTES:
.. This document is maintained using the reStructuredText markup system.
.. You may download this from <http://docutils.sf.net>. Also note that running
.. the docutils code re ...
Linux/uClinux/Unix编程 GoAhead Webs 2.1.5 embedded webserver arm
=====================================
GoAhead WebServer 2.1.8 Release Notes
=====================================
.. NOTES:
.. This document is maintained using the reStructuredText markup system.
.. You may download this from <http://docutils.sf.net>. Also note that running
.. the docutils code re ...
单片机编程 keil单片机编写程序
&nbsp;1. 安装Keil C51 V8.16版本,即uV3
&nbsp; &nbsp; 2. 打开uVision3,点击File---License Management...,打开License Management窗口,复制右上角的CID
&nbsp; &nbsp; 3. 打开注册机, 在CID窗口里填上刚刚复制的CID,其它设置不变
&nbsp; &nbsp; 4. 点击Generate生成许可号,复制许可号
&nbsp; &nbsp; 5. 将许可号复 ...
C/C++语言编程 定义一个复数类Complex
定义一个复数类Complex,使得下面的代码能够工作
Complex c1(3,5); // 用复数3+5i初始化c1
Complex c2 = 4.5; // 用实参4.5初始化c2
c1.add(c2); // 将c1与c2相加,结果保存在c1中
c1.show(); // 将c1输出(这时结果应该是7.5+5i)