搜索结果
找到约 228 项符合
Public 的查询结果
按分类筛选
- 全部分类
- Java编程 (28)
- Linux/Unix编程 (15)
- 其他 (12)
- 书籍 (11)
- 系统设计方案 (10)
- 加密解密 (9)
- 其他书籍 (7)
- 嵌入式/单片机编程 (6)
- 其他行业 (6)
- 数学计算 (6)
- JavaScript (6)
- 软件设计/软件工程 (5)
- 压缩解压 (5)
- 单片机开发 (5)
- Internet/网络编程 (5)
- 串口编程 (4)
- 技术资料 (4)
- 人工智能/神经网络 (3)
- 网络 (3)
- Applet (3)
- 通讯编程文档 (3)
- 嵌入式Linux (3)
- 汇编语言 (3)
- 通讯/手机编程 (3)
- CA认证 (3)
- 磁盘编程 (3)
- Java书籍 (3)
- 数据结构 (3)
- Jsp/Servlet (3)
- 源码 (3)
- 编辑器/阅读器 (2)
- 编译器/解释器 (2)
- VC书籍 (2)
- J2ME (2)
- Delphi控件源码 (2)
- 书籍源码 (2)
- SQL Server (2)
- 行业发展研究 (2)
- 教程 (2)
- 教程资料 (1)
- 无线通信 (1)
- 可编程逻辑 (1)
- 文章/文档 (1)
- GPS编程 (1)
- 金融证券系统 (1)
- 游戏 (1)
- 其他嵌入式/单片机内容 (1)
- 操作系统开发 (1)
- 人物传记/成功经验 (1)
- 邮电通讯系统 (1)
- SCSI/ASPI (1)
- 其他数据库 (1)
- 技术管理 (1)
- Windows CE (1)
- 多国语言处理 (1)
- Ajax (1)
- 教育系统应用 (1)
- 微处理器开发 (1)
- 驱动编程 (1)
- matlab例程 (1)
- USB编程 (1)
- 数据库系统 (1)
- 其他文档 (1)
- Linux/uClinux/Unix编程 (1)
- 习题答案 (1)
- 软件 (1)
CA认证 PKI(public key infrastructure) and CA(certificate authority)
PKI(public key infrastructure) and CA(certificate authority)
其他书籍 对应於codeworker的说明文档;CodeWorker is a versatile Open Source (GNU Lesser General Public License) parsing
对应於codeworker的说明文档;CodeWorker is a versatile Open Source (GNU Lesser General Public License) parsing tool and a source code generator devoted to generative programming.
磁盘编程 //按柱面和磁道来读取磁盘数据,要求 Public Function ReadDisk(ByVal Cylinders As Long, ByVal Tracks As Long, db() As
//按柱面和磁道来读取磁盘数据,要求
Public Function ReadDisk(ByVal Cylinders As Long, ByVal Tracks As Long, db() As Byte) As Boolean
书籍源码 复数运算#include<iostream.h> class Complex { public: Complex( double r =0, double i =0 ) C
复数运算#include<iostream.h>
class Complex
{ public:
Complex( double r =0, double i =0 )
Complex(int a) { Real = a Image = 0 }
void print() const
friend Complex operator+ ( const Complex & c1, const Complex & c2 )
friend Complex operator- ( const Complex & c1, const Complex & c2 )
friend ...
Java编程 编写JavaBean必须满足以下几点: 所有的JavaBean必须放在一个包中 JavaBean必须声明成public class类型 所有的属性必须封装 设置和取得属性可以通过set,get
编写JavaBean必须满足以下几点:
所有的JavaBean必须放在一个包中
JavaBean必须声明成public class类型
所有的属性必须封装
设置和取得属性可以通过set,get
Java书籍 package query public class LinkQuery { private Node front private Node vear public Link
package query
public class LinkQuery
{
private Node front
private Node vear
public LinkQuery()
{
this.front=null
this.vear=null
}
public void add(int i)
{
Node newNode=new Node(i)
if(vear==null && front==null)
{
vear=newNode
front=newNode
return
}
vear.next=ne ...
系统设计方案 Hardware Architectures for Public Key Cryptography
Hardware Architectures for Public Key
Cryptography
Java编程 public void playerUpdate(final Player p, final String event, final Object eventData) { // queue a
public void playerUpdate(final Player p, final String event, final Object eventData) {
// queue a call to updateEvent in the user interface event queue
Display display = Display.getDisplay(midlet)
display.callSerially(new Runnable() {
public void run() {
DRMPlayer.this.updateEvent(p, e ...
其他 MTOOLS version 2.0 Mtools is a public domain collection of programs to allow Unix systems t
MTOOLS
version 2.0
Mtools is a public domain collection of programs to allow Unix systems
to read, write, and manipulate files on an MSDOS filesystem (typically a
diskette).
The following MSDOS commands are emulated:
Mtool MSDOS
name equivalent Description
----- ---- -----------
mattrib ...
单片机开发 ublic class DropMidlet extends MIDlet { public static DropMidlet midlet private static MainCanv
ublic class DropMidlet extends MIDlet {
public static DropMidlet midlet
private static MainCanvas m_MainCanvas //定义MainCanvas的引用
public DropMidlet() {
super() //初始化,继承MIDlet类的构造
midlet = this
}