-
由于Java具有跨平台、代码可移植性、安全高效等广泛而强大的功能,因而在开发网络分布式应用的时候,可以用它自身的机制实现分布式计算,一种基于Java的远程方法调...
由于Java具有跨平台、代码可移植性、安全高效等广泛而强大的功能,因而在开发网络分布式应用的时候,可以用它自身的机制实现分布式计算,一种基于Java的远程方法调用(RMI)为我们开发企业分布式应用提供了行之有效的解决方案。-As the Java cross-platform code portability, security, efficiency and so strong and broad features, and thus in the development of networks of distributed applications, they can use it to realize its own mechanism for distributed computing, a Java-based remote method invocation ( RMI) for distributed application development companies, we provide effective solutions.
- 2022-02-04 03:13:49下载
- 积分:1
-
The program can count the number of the girth 4 of LDPC codes.
The program can count the number of the girth 4 of LDPC codes.
- 2022-01-25 21:46:47下载
- 积分:1
-
短信收发源码以请不要将文件放在这两个目录下
短信收发源码以请不要将文件放在这两个目录下-Source to send and receive message, please do not file on these two directory
- 2022-09-25 01:20:03下载
- 积分:1
-
GA算法,在MATLAB上的实现,是源程序
GA算法,在MATLAB上的实现,是源程序-GA algorithm, the realization in MATLAB is the source
- 2022-06-21 11:55:15下载
- 积分:1
-
this procedure is to control the frequency
这个程序是控制NRF24E1的跳频的测试程序,通过这个程序可以了解跳频的实现方法-this procedure is to control the frequency-hopping NRF24E1 testing procedures, this procedure can understand the method of frequency hopping
- 2023-08-09 07:20:03下载
- 积分:1
-
3GPP协议为通信编程的重要协议之一,该版本为TS25.463
3GPP协议为通信编程的重要协议之一,该版本为TS25.463-720-3GPP agreement Communication Programming One of the key agreements, the version of TS25.463-720
- 2023-07-05 17:15:02下载
- 积分:1
-
MATLAB仿真程序BPSK解调,包括匹配滤波器,…
BPSK解调的matlab仿真程序,里面包括匹配滤波器,同步,解调,误码计算等-BPSK demodulation of Matlab simulation program, which includes matching filter, synchronous demodulation, BER calculation
- 2023-08-07 11:10:03下载
- 积分:1
-
the purpose is to make the data 0123H, 0456H, 0789H, 0abcH. 0defh, 0fedh, 0cbah,...
程序的目的是想让数据0123H,0456H,0789H,0abcH,0defh,0fedh,0cbah,0987H逆序存放
我的运行环境:wxp sp2+masm611,
-the purpose is to make the data 0123H, 0456H, 0789H, 0abcH. 0defh, 0fedh, 0cbah, 0987H Roget I kept the environment : wxp sp2 masm611.
- 2022-07-02 07:23:17下载
- 积分:1
-
rewritten ENS software information! Really very useful ah ~! Against CDMA phone...
改写ENS的软件的资料!真的很有用的呀~!针对CDMA的电话都可以的~!-rewritten ENS software information! Really very useful ah ~! Against CDMA phone can be ~!
- 2022-08-13 11:03:28下载
- 积分:1
-
两台电脑简单通信
很简单的源码,通过C++实现两台电脑的简单通信,希望对大家有帮助,#include
#include
#pragma comment(lib,"ws2_32.lib")
void main()
{
WORD wVersionRequested;
WSADATA wsaData;
int err;
wVersionRequested = MAKEWORD( 1, 1 );//请求1.1版本的winsock库
err = WSAStartup( wVersionRequested, &wsaData );
if ( err != 0 ) {
return;
}
if ( LOBYTE( wsaData.wVersion ) != 1 ||
HIBYTE( wsaData.wVersion ) != 1 ) {
WSACleanup( );
return;
}
&n
- 2022-03-20 09:13:36下载
- 积分:1