搜索结果

找到约 903 项符合 stRing-include 的查询结果

JavaScript 1.入门教程文件夹 在该文件夹中包括了JavaScript的大部分知识

1.入门教程文件夹 在该文件夹中包括了JavaScript的大部分知识,可以帮助读者快速入门。主要包括:JavaScript语言概述,JavaScript语言入门,JavaScript事件处理,JavaScript基于对象编程,文档对象模型(DOM),String、Math、Array等数据对象,Window及相关顶级对象,Document对象等 。 2.视频动画文件夹 在该文件夹中包括5 ...
https://www.eeworm.com/dl/685/484757.html
下载: 136
查看: 1047

JavaScript 关于代码的解释(以区为单位): 1区中

关于代码的解释(以区为单位): 1区中,当读取文件时,先把文件内容读到缓存中,当调用in.readLine()时,再从缓存中以字符的方式读取数据(以下简称“缓存字节读取方式”)。 1b区中,由于想以缓存字节读取方式从标准IO(键盘)中读取数据,所以要先把标准IO(System.in)转换成字符导向的stream,再进行BufferedReader封 ...
https://www.eeworm.com/dl/685/485921.html
下载: 114
查看: 1060

电子书籍 I was pleasantly surprised when in November 2005 a message arrived from Wayne Wheeler, the new comp

I was pleasantly surprised when in November 2005 a message arrived from Wayne Wheeler, the new computer science editor of Springer Verlag, notifying me that he in tends to qualify this book as a Springer major reference work (MRW), thereby releasing past restrictions on page counts, freeing me from ...
https://www.eeworm.com/dl/cadence/ebook/487124.html
下载: 112
查看: 1051

VC书籍 vc++与visio 安装VISIO office(推荐2003以上版本)必须安装visio office 否则程序无法运行 安装VisioSDK(推荐2003以上版本) 默认安装路径为<

vc++与visio 安装VISIO office(推荐2003以上版本)必须安装visio office 否则程序无法运行 安装VisioSDK(推荐2003以上版本) 默认安装路径为<SDK> C:\Program Files\Microsoft Office\Office12\VisSDK 新建project(实例代码是新建了个MFC Dialog base program) 将<SDK>\Libraries\CPP\里的include目录下和sources目录下 ...
https://www.eeworm.com/dl/686/489266.html
下载: 40
查看: 1332

Delphi控件源码 the best serial port component for delphi application. you can send receive serial port datas as

the best serial port component for delphi application. you can send receive serial port datas as byte string or cluster
https://www.eeworm.com/dl/666/490902.html
下载: 195
查看: 1063

网络 In the next generation of wireless communication systems, there will be a need for the rapid deploy

In the next generation of wireless communication systems, there will be a need for the rapid deployment of independent mobile users. Significant examples include establishing survivable, efficient, dynamic communication for emergency operations, disaster relief efforts, and military networks. Such n ...
https://www.eeworm.com/dl/635/492162.html
下载: 190
查看: 1105

网络 In the next generation of wireless communication systems, there will be a need for the rapid deploy

In the next generation of wireless communication systems, there will be a need for the rapid deployment of independent mobile users. Significant examples include establishing survivable, efficient, dynamic communication for emergency operations, disaster relief efforts, and military networks. Such n ...
https://www.eeworm.com/dl/635/492164.html
下载: 161
查看: 1083

C/C++语言编程 toj 4022源代码

#include <iostream> using namespace std; int main(){ int t; cin>>t; while(t--){ long long n; cin>>n; if(n%2==1) cout<<(n*n-1)/4<<endl; else if (n%4==0) cout <<(n*n)/4-1<<endl; else{ if(n==2) cout<<1<<endl; else{ long long k=n/2-1; cout <<k*k+2*k-3<<endl; } ...
https://www.eeworm.com/dl/502385.html
下载: 1
查看: 32

Linux/uClinux/Unix编程 两个链表的交集

两个链表的交集 #include<stdio.h> #include<stdlib.h> typedef struct Node{   int data;   struct  Node *next; }Node; void initpointer(struct Node *p){   p=NULL; } int  printlist(struct Node* head){   int flag=1;   head=head->next;   /*   因为标记1的地 ...
https://www.eeworm.com/dl/502540.html
下载: 1
查看: 46

嵌入式综合 samba服务器实验指导

第一节、samba是干什么的?它有什么用? Samba(SMB是其缩写) 是一个网络服务器,它是Linux作为本地服务器最重要的一个服务,用于Linux和Windows共享文件之用;Samba可以用于Windows和 Linux之间的共享文件,也一样用于Linux和Linux之间的共享文件;不过对于Linux和Linux之间共享文件有更好的网络文件系统 NFS,NFS也 ...
https://www.eeworm.com/dl/506647.html
查看: 96