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
//按柱面和磁道來讀取磁盤數(shù)據(jù),要求 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
復數(shù)運算#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環(huán)境下使用UNIX domain協(xié)議實現(xiàn)的客戶端和服務器端程序,使用Makefile可以進行編譯。
標簽: UNIX domain Linux 環(huán)境
上傳時間: 2013-12-21
上傳用戶:redmoons