本书介绍了JavssciPt的程序设计技术。书中从最基本的Javascr加编程概念谈起, 详细介绍了J帅她的中可使用的各种对象,讨论了如何用J帅SciPt操作HTML文档 中的各个元素,从而获得更灵活、交互性更强的web页,接着说明了多媒体的处理技术, 最后介绍了Javascdpt与JaM、cGI、肋等工具的结合技术以及JsMscr加的未来。本书 循序渐进,几乎覆盖了Ja阴scr加编程的各个细节,并且包含大量新颖实用的示例,以及 Jav:sc6pt中各种结构、对象和函数的详细说明,具有很好的参考价值。
上传时间: 2015-09-13
上传用户:wanqunsheng
文件名 :Calender.c // 描述 :日历时钟模块,用于不带时钟芯片的系统 // 语言 :C 作者 :Jean J. Labrosse 日期 :2002-05-17 // 说明 :原来的程序用于
上传时间: 2015-09-16
上传用户:zhangliming420
subtitlesync这是我写的一个小程序, 用于将下载的电影的字幕同步,因为很多时候字幕跟声音有不同步现象.现在只能处理SRT.格式的字幕. 开发平台是eclipse,使用方法是运行Main.java
标签: subtitlesync eclipse Main 字幕
上传时间: 2014-01-17
上传用户:cursor
二维FDTD程序,采用PML边界s 用pml和mur分别计算j=1处的Hz(i,1).计算空间扩大到400*400,不加边界,运行相同的时间步
上传时间: 2013-12-22
上传用户:talenthn
palm编成,这种书很少,有兴趣看看 Title: Palm Programming: The Developer s Guide URL: http://safari.oreilly.com/JVXSL.asp?x=1&mode=section&sortKey=rank&sortOrder=desc&view=book&xmlid=1-56592-525-4&open=false&srchText=palm+programming&code=&h=&m=&l=1&catid=&s=1&b=1&f=1&t=1&c=1&u=1&page=0 ISBN: 1-56592-525-4 Author: Julie McKeehan/ Neil Rhodes Publisher: O Reilly Page: 478 Edition: 1st edition (December 1998) Catalog: PDA programming / Palm Format: pdf Size: 2.06M Supplier: Summary: Emerging as the bestselling hand-held computers of all time, PalmPilots have spawned intense developer activity and a fanatical following. Used by Palm in their developer training, this tutorial-style book shows intermediate to experienced C programmers how to build a Palm application from the ground up. Includes a CD-ROM with source code and third-party developer tools
标签: Programming Developer oreilly safari
上传时间: 2013-12-10
上传用户:litianchu
考察例1 4 - 8中的1 4个点。A中的最近点对为(b,h),其距离约为0 . 3 1 6。B中最近点对为 (f, j),其距离为0 . 3,因此= 0 . 3。当考察 是否存在第三类点时,除d, g, i, l, m 以外 的点均被淘汰,因为它们距分割线x= 1的 距离≥ 。RA ={d, i, m},RB= {g, l},由 于d 和m 的比较区中没有点,只需考察i 即可。i 的比较区中仅含点l。计算i 和l 的距离,发现它小于,因此(i, l) 是最近
标签:
上传时间: 2013-12-03
上传用户:66666
Java Regex Primer Since version 1.4, Java has had support for Regular Expressions in the core API. Java Regex follows the same basic principles used in other languages, just withdi erent access methods, and some subtledi erences with the patterns. This primer is aimed towards developers already familiar with regex in other languages wanting a brief outline of its support in Java. It may also be beneficial to developers learning regex if used in conjunction with detailed documentation explaining the construction of regex patterns. Reading the javadoc forjava.util.regex. Pattern is a must to see how the Java regex patterns aredi erent from other languages such as Perl. Most of the functions discussed herin are from thejava.util.regex. Matcher class with a few fromjava.util.regex. Pattern. Reading this text in conjunction with the javadoc of those classes is advised.
标签: Java Expressions Regular version
上传时间: 2013-12-18
上传用户:lanhuaying
本程序演示for-for的二重循环结构。外层for语句的循环变量是i,控制总共显示多少行 内层for语句 的循环变量是j,控制每行显示多少字符。
上传时间: 2013-12-23
上传用户:gundan
本教程举例说明了如何使用 ADO 编程模型对数据源进行查询及更新。教程首先讲述了完成此项任务的必要步骤,然后分别通过 Microsoft® Visual Basic、以 VC++ Extensions 为特征的 Microsoft® Visual C++、Microsoft® Visual Basic® 、Scripting Edition 和以 ADO for Windows Foundation Classes (ADO/WFC) 为特征的 Microsoft® Visual J++® 进行更为具体的说明。
上传时间: 2015-10-13
上传用户:330402686
经典C语言程序设计100例1-10 如【程序1】 题目:有1、2、3、4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少? 1.程序分析:可填在百位、十位、个位的数字都是1、2、3、4。组成所有的排列后再去 掉不满足条件的排列。 2.程序源代码: main() { int i,j,k printf("\n") for(i=1 i<5 i++) /*以下为三重循环*/ for(j=1 j<5 j++) for (k=1 k<5 k++) { if (i!=k&&i!=j&&j!=k) /*确保i、j、k三位互不相同*/ printf("%d,%d,%d\n",i,j,k) } }
上传时间: 2013-12-14
上传用户:hfmm633