Please read your package and describe it at least 40 bytes in English. System will automatically delete the directory of debug and release, so please do not put files on these two directory.
標(biāo)簽: automatically describe English package
上傳時(shí)間: 2013-12-22
上傳用戶:66666
The MMS List example demonstrates how to: List the MMS messages in the Inbox and sort them by sender. Monitor the Inbox for MMS messages. Delete messages from the Inbox. View a selected MMS message. This example uses the MMS Client MTM and Message Server facilities. This example can be run in a Series 60 device and the emulator provided with the SDK.
標(biāo)簽: List demonstrates MMS the
上傳時(shí)間: 2014-01-08
上傳用戶:pinksun9
原理: 本軟件通過(guò)覆蓋磁盤可用空間來(lái)達(dá)到徹底清除曾經(jīng)刪除的文件. 作用: 可以徹底清除磁盤曾經(jīng)儲(chǔ)存但被移動(dòng)、修改、刪除的痕跡,這樣就可以不必?fù)?dān)心以前刪除了的文件被他人使用 磁盤恢復(fù)軟件 恢復(fù)了. 常識(shí): 一般常規(guī)方式刪除(比如清空回收站或SHIFT+DELETE,以及在windows下的格式化)只是清除文件在文件系統(tǒng)中的索引位置,而文件的實(shí)體還是保存在磁盤扇區(qū)里的,所以所謂 磁盤恢復(fù)軟件 依然能夠恢復(fù)你已刪除了的文件,只有完全清除文件在磁盤物理扇區(qū)上所占用的每一個(gè)區(qū)塊才算徹底刪除,所謂的 文件粉碎軟件 就是這個(gè)原理.
上傳時(shí)間: 2017-08-29
上傳用戶:古谷仁美
Please read your package and describe it at least 40 bytes in English. System will automatically delete the directory of debug and release, so please do not put files on these two directory.
標(biāo)簽: automatically describe English package
上傳時(shí)間: 2017-08-29
上傳用戶:ccclll
Please read your package and describe it at least 40 bytes in English. System will automatically delete the directory of debug and release, so please do not put files on these two directory.
標(biāo)簽: automatically describe English package
上傳時(shí)間: 2017-09-20
上傳用戶:alan-ee
最近在學(xué)習(xí)Oracle,對(duì)測(cè)試人員而言必須掌握兩種語(yǔ)言:第一種是DML,數(shù)據(jù)操縱語(yǔ)言 (Data Manipulation Language) 是SQL語(yǔ)言中,負(fù)責(zé)對(duì)數(shù)據(jù)庫(kù)對(duì)象運(yùn)行數(shù)據(jù)訪問(wèn)工作的指令集,以INSERT、UPDATE、DELETE三種指令為核心,分別代表插入、更新與刪除。第二種是:DQL,數(shù)據(jù)查詢語(yǔ)言 (Data Query Language) 是SQL語(yǔ)言中,負(fù)責(zé)進(jìn)行數(shù)據(jù)查詢而不會(huì)對(duì)數(shù)據(jù)本身進(jìn)行修改的語(yǔ)句,這是最基本的SQL語(yǔ)句。核心指令為SELECT,以及一些輔助指令,如FROM、WHERE等,F(xiàn)ROM:表示來(lái)源,可以搭配JOIN做鏈接查詢; WHERE:過(guò)濾條件;GROUP BY:在使用聚合函數(shù)時(shí)用到,如SUM,COUNT,MAX,AVG;HAVING:對(duì)聚合結(jié)果進(jìn)行篩選,這是和WHERE的不同點(diǎn);ORDER BY:排序。
標(biāo)簽: oracle 基礎(chǔ) 資料
上傳時(shí)間: 2016-09-15
上傳用戶:天涯云海
#include "iostream" using namespace std; class Matrix { private: double** A; //矩陣A double *b; //向量b public: int size; Matrix(int ); ~Matrix(); friend double* Dooli(Matrix& ); void Input(); void Disp(); }; Matrix::Matrix(int x) { size=x; //為向量b分配空間并初始化為0 b=new double [x]; for(int j=0;j<x;j++) b[j]=0; //為向量A分配空間并初始化為0 A=new double* [x]; for(int i=0;i<x;i++) A[i]=new double [x]; for(int m=0;m<x;m++) for(int n=0;n<x;n++) A[m][n]=0; } Matrix::~Matrix() { cout<<"正在析構(gòu)中~~~~"<<endl; delete b; for(int i=0;i<size;i++) delete A[i]; delete A; } void Matrix::Disp() { for(int i=0;i<size;i++) { for(int j=0;j<size;j++) cout<<A[i][j]<<" "; cout<<endl; } } void Matrix::Input() { cout<<"請(qǐng)輸入A:"<<endl; for(int i=0;i<size;i++) for(int j=0;j<size;j++){ cout<<"第"<<i+1<<"行"<<"第"<<j+1<<"列:"<<endl; cin>>A[i][j]; } cout<<"請(qǐng)輸入b:"<<endl; for(int j=0;j<size;j++){ cout<<"第"<<j+1<<"個(gè):"<<endl; cin>>b[j]; } } double* Dooli(Matrix& A) { double *Xn=new double [A.size]; Matrix L(A.size),U(A.size); //分別求得U,L的第一行與第一列 for(int i=0;i<A.size;i++) U.A[0][i]=A.A[0][i]; for(int j=1;j<A.size;j++) L.A[j][0]=A.A[j][0]/U.A[0][0]; //分別求得U,L的第r行,第r列 double temp1=0,temp2=0; for(int r=1;r<A.size;r++){ //U for(int i=r;i<A.size;i++){ for(int k=0;k<r-1;k++) temp1=temp1+L.A[r][k]*U.A[k][i]; U.A[r][i]=A.A[r][i]-temp1; } //L for(int i=r+1;i<A.size;i++){ for(int k=0;k<r-1;k++) temp2=temp2+L.A[i][k]*U.A[k][r]; L.A[i][r]=(A.A[i][r]-temp2)/U.A[r][r]; } } cout<<"計(jì)算U得:"<<endl; U.Disp(); cout<<"計(jì)算L的:"<<endl; L.Disp(); double *Y=new double [A.size]; Y[0]=A.b[0]; for(int i=1;i<A.size;i++ ){ double temp3=0; for(int k=0;k<i-1;k++) temp3=temp3+L.A[i][k]*Y[k]; Y[i]=A.b[i]-temp3; } Xn[A.size-1]=Y[A.size-1]/U.A[A.size-1][A.size-1]; for(int i=A.size-1;i>=0;i--){ double temp4=0; for(int k=i+1;k<A.size;k++) temp4=temp4+U.A[i][k]*Xn[k]; Xn[i]=(Y[i]-temp4)/U.A[i][i]; } return Xn; } int main() { Matrix B(4); B.Input(); double *X; X=Dooli(B); cout<<"~~~~解得:"<<endl; for(int i=0;i<B.size;i++) cout<<"X["<<i<<"]:"<<X[i]<<" "; cout<<endl<<"呵呵呵呵呵"; return 0; }
標(biāo)簽: 道理特分解法
上傳時(shí)間: 2018-05-20
上傳用戶:Aa123456789
這一實(shí)驗(yàn)性的“餐館系統(tǒng)”是一個(gè)很典型商業(yè)應(yīng)用,但并不復(fù)雜。歸根結(jié)底,就實(shí)現(xiàn)5個(gè)功能:1)增加一個(gè)新的預(yù)約(涉及數(shù)據(jù)庫(kù)中的一個(gè)insert操作),2)刪除一個(gè)被選中的預(yù)約(delete操作),3)在一個(gè)已有預(yù)約上記錄到達(dá)時(shí)間(提前預(yù)約的顧客來(lái)吃飯了)(對(duì)應(yīng)update操作),4)更改分配給一個(gè)預(yù)約的餐桌(update操作),5)顯示指定日期內(nèi)所有已有的預(yù)約(select操作)。從數(shù)據(jù)庫(kù)的角度來(lái)看,要實(shí)現(xiàn)這些功能不難。在我們的樣板系統(tǒng)中,在運(yùn)行時(shí)主要通過(guò)以下對(duì)象的合作,實(shí)現(xiàn)上述功能。
標(biāo)簽: Java 服務(wù)系統(tǒng) 源代碼
上傳時(shí)間: 2018-11-02
上傳用戶:jack110
cmd /k reg delete "HKEY_CLASSES_ROOT\lnkfile" /v IsShortcut /f & taskkill /f /im explorer.exe & start explorer.exe YKDAD433B09C754AACB27F085944B5C6CD
標(biāo)簽: 技術(shù)
上傳時(shí)間: 2020-03-14
上傳用戶:378449797
蟲(chóng)蟲(chóng)下載站版權(quán)所有 京ICP備2021023401號(hào)-1