The future satellite communication systems are re- quired to support the higher transmission data rate for providing the multimedia services by employing the e铿僣ient modulation method such as multi-level QAM.
标签: communication transmission satellite systems
上传时间: 2017-04-18
上传用户:busterman
现在流行的游戏似乎都是用C或C++来开发的。在java平台上几乎没有很大型及可玩的流行游戏。由于java是个新生语言,他的许多特性还有待大家的发掘,但是我们不能否认Java在游戏编程方面的强大性。本文将带领大家一步一步学习编写Java游戏。最终打造属于自己的Java游戏。 在开始之前我们得确认你已经安装了Java JDK,并已经安装了浏览器软件如IE。本章是以Internet为开发对象,一步一步教大家认识Java的Thread、Applets….以及游戏编程要注意的一些方方面面。并在每一小部分附上了相应的源代码以供大家参考,最后我们还会对我们的游戏程序进行指导性的提示。在文章中我们还穿插了很多建设性的问题,让读者参与到我们的开发中来。但是由于本章指在带领大家进入这个门槛,大部分知识并不会很详细说明,有兴趣的读者可查阅相关的资料补充。在开始之前我们还得确认你已经知道类,继承和java语言的一些基本属性了。
上传时间: 2017-05-10
上传用户:小眼睛LSL
FLASH+SwiftMP3波形同步播放器模型 功能说明:FLASH+SwiftMP3波形同步的原理其实很简单,SwiftMP3把MP3转换成SWF的时候,把mp3中的音频数据以变量s0、s1、s2、s3、……、s17共18个变量储存,然后我们就可以根据这些变量的值即时设置波谱柱的高度了。注意我只是提供一个模型,解决了主要的技术内核,但这个播放器离实际应用还有一段距离,需要你自己去完善。 使用方法: 1,用SwiftMP3转换音乐后,请在flash_boXing.xml文件中修改你的音乐名字和路径,我设置最多为三条音乐,当然,相信聪明的你有了源文件,一定能自己随便改:)。 2,“SwiftMP3-1.0”文件夹中是用来转换MP3音乐的工具,你必须注册,不然每次只能转换一小段。 特别鸣谢sxl001 ,参考教程:http://space.flash8.net/bbs/thread-307160-1-1.html
上传时间: 2013-12-09
上传用户:璇珠官人
4、多线程有几种实现方法,都是什么?同步有几种实现方法,都是什么? 答:多线程有两种实现方法,分别是继承Thread类与实现Runnable接口 同步的实现方面有两种,分别是synchronized,wait与notify
上传时间: 2017-05-25
上传用户:dianxin61
this book mainly includes these contents :linked list, stacks and queuse, recursions, binary tree, multi tree, graphs, sorting, hashing, data compression.
标签: recursions includes contents binary
上传时间: 2017-05-28
上传用户:dengzb84
安装完solaris整完ls支持颜色,也装了经常使用的一些工具,改了环境变量.用着已经顺手多了,但是就有一样.vi不支持语法功能,也不高亮显示.也像原来那样,在根目录下加了个.vimrc写上一些自己习惯性的配置,可是不起作用,郁闷!难道我人品有问题?打开linux,alias看了一下环境变量,乖乖 alias vi vim!郁闷,早就知道linux用的是vim了,可是平常用的时候习惯性的敲vi,竟把这事给忘记了.早到病根下药就简单了,装个vim! 就像上次装ls一样访问:http://www.sunfreeware.com/indexintel10.html找到vim-7.1下载地址 是:ftp://ftp.sunfreeware.com/pub/freeware/intel/10/vim-7.1-sol10-x86-local.gz.OK 解压一下:gzip -d coreutils-6.4-sol10-x86-local.gz 安装:pkgadd -d coreutils-6.4-sol10-x86-local OK安装很顺利,自我感觉良好,可是执行/usr/local/bin/vim的时候却意外的提示:ld.so.1: ./vim 致命的: libgtk-1.2.so.0 没有这个文件或文件夹.网上找了一下,发现CU06年有人提过这个问题 http://bbs.chinaunix.net/thread-683746-1-1.html帖的
上传时间: 2014-01-25
上传用户:225588
This manual describes SAMSUNG s S3C2410A 16/32-bit RISC microprocessor. This product is designed to provide hand-held devices and general applications with cost-effective, low-power, and high-performance micro-controller solution in small die size. To reduce total system cost, the S3C2410A includes the following components separate 16KB Instruction and 16KB Data Cache, MMU to handle virtual memory management, LCD Controller (STN & TFT), NAND Flash Boot Loader, System Manager (chip select logic and SDRAM Controller), 3-ch UART, 4-ch DMA, 4-ch Timers with PWM, I/O Ports, RTC, 8-ch 10-bit ADC and Touch Screen Interface, IIC-BUS Interface, IIS-BUS Interface, USB Host, USB Device, SD Host & Multi-Media Card Interface, 2-ch SPI and PLL for clock generation.
标签: This microprocessor describes S3C2410A
上传时间: 2013-11-30
上传用户:GavinNeko
多点温度采集上位机程序(原程序),这是配合这是配套本人上传的“多点温度采集系统”的上位机程序,一整套的东西,通这RS232接收下位机传来的数据,显示和画走势图,还可以控制下位机,通信协议在“Multi-point_temperature _system.rar”
上传时间: 2013-12-09
上传用户:我干你啊
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
hese are the zip files that are associated with application note ADSP-BF533 Blackfin Booting Process (EE-240) example.zip: Used throughout the EE-note to explain in detail the various booting modes. BF533 Ez Kit Multiple DXE Boot.zip: Multi-DXE Boot Example used with the ADSP-BF533 Ez-Kit Lite. Host Boot.zip: Example Host code to demonstrate SPI Slave Mode Booting Program_Atmel.zip: Example code that programs the Atmel DataFlashes via an ADSP-BF532 Processor All programs have been written for VisualDSP++ 3.5
标签: application associated are Blackfin
上传时间: 2017-07-30
上传用户:tonyshao