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 }
标签: int Time void printMilita
上传时间: 2013-12-20
上传用户:hwl453472107
PKI(public key infrastructure) and CA(certificate authority)
标签: infrastructure certificate authority public
上传时间: 2014-01-10
上传用户:nanxia
PKI(public key infrastructure) and CA(certificate authority)
标签: infrastructure certificate authority public
上传时间: 2016-04-17
上传用户:lizhizheng88
对应於codeworker的说明文档;CodeWorker is a versatile Open Source (GNU Lesser General Public License) parsing tool and a source code generator devoted to generative programming.
标签: codeworker CodeWorker versatile General
上传时间: 2014-08-14
上传用户:libenshu01
//按柱面和磁道来读取磁盘数据,要求 Public Function ReadDisk(ByVal Cylinders As Long, ByVal Tracks As Long, db() As Byte) As Boolean
标签: ByVal Long Cylinders Function
上传时间: 2014-01-13
上传用户:zxc23456789
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.
标签: frequency modulated waveforms position
上传时间: 2016-06-28
上传用户:亚亚娟娟123
复数运算#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 Complex operator- ( const Complex & c ) private: double Real, Image }
标签: Complex double iostream include
上传时间: 2016-06-30
上传用户:wang5829
编写JavaBean必须满足以下几点: 所有的JavaBean必须放在一个包中 JavaBean必须声明成public class类型 所有的属性必须封装 设置和取得属性可以通过set,get
上传时间: 2016-07-04
上传用户:AbuGe
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=newNode vear=newNode } public int remove() { if(this.front==null) { System.out.println("队是空的,无法取") return -1 } int temp=this.front.data this.front=this.front.next if(this.front==null) { this.vear=null }
标签: private public Node LinkQuery
上传时间: 2016-07-08
上传用户:天诚24
UNIX/Linux环境下使用UNIX domain协议实现的客户端和服务器端程序,使用Makefile可以进行编译。
上传时间: 2013-12-21
上传用户:redmoons