As an alternate to the migration scenario, Microsoft offers some interoperation solutions (in an interoperation scenario, you don t try to turn the MFC code into .NET automatically, you just try to ensure that they can work together):
標簽: interoperation alternate Microsoft migration
上傳時間: 2017-07-01
上傳用戶:wys0120
This present a primer for people who are unfamiliar with the Java language. This introduction is intended to allow you to develop the Java skills necessary to understand basic programs.
標簽: This introduction unfamiliar language
上傳時間: 2014-01-19
上傳用戶:Miyuki
This routine calls the glpk library to solve a LP/MIP problem. A typical LP problem has following structure: [min|max] C x s.t. Ax ["="|"<="|">="] b {x <= UB} {x >= LB} The calling syntax is: [XMIN,FMIN,STATUS,EXTRA]=glpkmex(SENSE,C,A,B,CTYPE,LB,UB,... VARTYPE,PARAM,LPSOLVER,SAVE)
標簽: problem following routine library
上傳時間: 2014-12-01
上傳用戶:changeboy
用SHA算法實現對任意文件的hash摘要,并且把hash摘要值(至少為160bit)存入另一個文件,形如: hash inputfile hashvaluefile 說明:SHA算法的實現至少為160bit,或者可以選擇256,384或者512的,可以查閱相關資料,按照標準來實現(hash的算法是否正確,可以和網上的標準算法對比,用相同的輸入看是否能夠得到相同的輸出)控制臺編程: int main(int argc, char *argv[ ])
上傳時間: 2017-07-11
上傳用戶:cursor
I. C. Wong, Z. Shen, J. G. Andrews, and B. L. Evans, ``A Low Complexity Algorithm for Proportional Resource Allocation in OFDMA Systems , Proc. IEEE Int. Work. Signal Processing Systems, 針對這篇文章給出的源代碼
上傳時間: 2014-01-24
上傳用戶:zhichenglu
java 線程 靜態鎖,對象鎖, synchronized 是鎖方法還是鎖對象?還是鎖類?如何實現?? 部分代碼如下, public static Object lock=new Object() //靜態鎖,鎖類,不是鎖對象了!!所以兩個線程同時 運行兩個 TestThread 的execute( ),也可以同步!!! public void execute(){ // synchronized(lock){ for(int i=0 i<20 i++){ try { Thread.sleep(30) } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace() } System.out.println(Thread.currentThread().getName()+Thread.currentThread ().getName()+" "+i) } } }
上傳時間: 2017-07-15
上傳用戶:lijianyu172
三: 針對帶表頭結點的單鏈表,試編寫下列函數。 (1) 定位函數Locate:在單鏈表中尋找第i個結點。若找到,則函數返回第i個結點的地址;若找不到,則函數返回NULL。 (2) 求最大值函數max:通過一趟遍歷在單鏈表中確定值最大的結點。 (3) 統計函數number:統計單鏈表中具有給定值x的所有元素。 (4) 建立函數create:根據一維數組a[n]建立一個單鏈表,使單鏈表中各元素的次序與a[n]中各元素的次序相同,要求該程序的時間復雜性為O(n)。 (5) 整理函數tidyup:在非遞減有序的單鏈表中刪除值相同的多余結點。
上傳時間: 2017-07-20
上傳用戶:CSUSheep
client socket include <sys/types.h> include <sys/socket.h> include <stdio.h> include <netinet/in.h> include <arpa/inet.h> include <unistd.h> int main() { int sockfd int len struct sockaddr_in address int result char ch = A sockfd = socket(AF_INET, SOCK_STREAM, 0) address.sin_family = AF_INET address.sin_addr.s_addr = inet_addr("127.0.0.1") address.sin_port = 9734 len = sizeof(address) result = connect(sockfd, (struct sockaddr *)&address, len) if(result == -1) { perror("oops: client") exit(1) } write(sockfd, &ch, 1) read(sockfd, &ch, 1) printf("char from server = c\n", ch) close(sockfd) exit(0) }
上傳時間: 2017-07-29
上傳用戶:wab1981
文中介紹了QPSK調制解調的原理,并基于FPGA實現了QPSK調制解調電路。MAX+PLUSII環境下的仿真結果表明了該設計的正確性。
上傳時間: 2017-08-08
上傳用戶:hoperingcong
秒信號發生器,供初學者了解vhdl的編程方法,程序非常簡單。編程環境使用Max+Plus IIV10.12
標簽: 信號發生器
上傳時間: 2014-01-17
上傳用戶:xinzhch