搜索结果
找到约 344 项符合
PUBLIC-domain 的查询结果
汇编语言 class Time { public: Time(int =0,int =0,int =0) void setTime(int,int,int) void printMilita
class Time
{
public:
Time(int =0,int =0,int =0)
void setTime(int,int,int)
void printMilitary()
void printStandard()
private:
int hour
int minute
int second
}
系统设计方案 PKI(public key infrastructure) and CA(certificate authority)
PKI(public key infrastructure) and CA(certificate authority)
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
3G开发 This m file plots the time and frequency domain of UWB PPM(pulse position modulated) waveforms(monoc
This m file plots the time and frequency domain of UWB PPM(pulse position modulated) waveforms(monocycles and doublets) with different pulse recurring frequency (PRF)and information rates.
书籍源码 复数运算#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 ...
Linux/Unix编程 UNIX/Linux环境下使用UNIX domain协议实现的客户端和服务器端程序
UNIX/Linux环境下使用UNIX domain协议实现的客户端和服务器端程序,使用Makefile可以进行编译。