CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - the practice of programming

搜索资源列表

  1. LinuxSerialProtocolDevelopmentAndIndustry(2)

    0下载:
  2. 本教程结合实际开发内容进行实例讲解Linux下串口与工业协议开发,主要内容有串口通信原理、串口编程常用的API、串口编程实践、Modbus协议介绍和Modbus编程实践等内容。-Combined with the actual development of the tutorial examples to explain the contents of the serial port and the industrial agreement under Linux development, th
  3. 所属分类:Communication

    • 发布日期:2017-06-22
    • 文件大小:42725552
    • 提供者:kadin
  1. AdvancedLinuxProgramming

    0下载:
  2. 主要是讲解Linux下编程的使用和方法,以及在实际中的高级应用。-Mainly to explain the use of Linux, Programming and methods, as well as advanced applications in practice.
  3. 所属分类:Linux Network

    • 发布日期:2017-05-14
    • 文件大小:3510618
    • 提供者:李伟峰
  1. device_drier

    0下载:
  2. 主要是讲解Linux下驱动实现编程的使用和方法,以及在实际中的高级应用。-Linux is mainly to explain the use of under-driven programming and methods of implementation, as well as advanced applications in practice.
  3. 所属分类:Embeded-SCM Develop

    • 发布日期:2017-03-30
    • 文件大小:387111
    • 提供者:李伟峰
  1. clock

    0下载:
  2. 从语音电子钟的设计原理、设计方案入手,详细介绍了系统硬件设计、软件设计及调试。在语音电子钟的设计中,要处理好以下几个关键:D/A(数/模)转换,语音识别,人机接口,程序设计。D/A(数/模)和语音识别技术关系到时间的正确播报,人机接口是播报时间和调整时间的关键。利用凌阳SPCE061A单片机在语音识别和处理方面的优点,结合实践,设计出有特色的语音电子钟。-Voice clock from the design principles of design, a detailed descr ipti
  3. 所属分类:Communication-Mobile

    • 发布日期:2017-03-28
    • 文件大小:904187
    • 提供者:杨光
  1. part2.4_2

    0下载:
  2. 单片机编程练习的一个练习程序,熟悉C语言编程的流程-Microcontroller programming practice in a training programs, familiar with the process of the C programming language
  3. 所属分类:assembly language

    • 发布日期:2017-04-04
    • 文件大小:1293
    • 提供者:
  1. 1

    0下载:
  2. 单片机编程练习的一个练习程序,熟悉C语言编程的流程-Microcontroller programming practice in a training programs, familiar with the process of the C programming language
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-12
    • 文件大小:722
    • 提供者:
  1. CCpluscplsprocessnig

    0下载:
  2. 用C语言编写,DOS编程习惯 (过程驱动),并配所需图象文件及字库文件。 编程练习:只需将编程练习模块Ex1 至 Ex12中任一程序的内容删除,即 可在其中编制自己的程序,不用修改菜单结构。-Using C language, DOS programming practice (process-driven), and with the necessary image files and font files. Programming Exercise: Just programmi
  3. 所属分类:Special Effects

    • 发布日期:2017-05-28
    • 文件大小:10299430
    • 提供者:lj
  1. OFDMtongbu

    0下载:
  2. OFDM同步VC++环境下的编程实现,可运行实践,帮助初学者加深对OFDM同步的理解-OFDM synchronization VC++ programming environment, you can run practice, to help beginners to deepen the understanding of the OFDM synchronization
  3. 所属分类:Communication-Mobile

    • 发布日期:2017-04-03
    • 文件大小:1531
    • 提供者:美美
  1. UnderstandingUnixLinuxProgramming

    0下载:
  2. 《Unix/Linux编程实践》一书源程序,本书通过解释Unix的工作原理,循序渐进地讲解实现Unix中系统命令的方法,让读者理解并逐步精通Unix系统编程,进而具有编制Unix应用程序的能力。书中采用启发式、举一反三、图示讲解等多种方法讲授,语言生动、结构合理、易于理解。-" Unix/Linux programming practice," a book source, Unix book by explaining the working principle of pro
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-25
    • 文件大小:100822
    • 提供者:fbin
  1. biyelunewen

    0下载:
  2. 本课程设计为学生提供了一个既动手又动脑,自学,查资料,独立实践的机会。将本学期课本上的理论知识和实际有机的结合起来,锻炼学生实际分析问题和解决问题的能力,提高学生适应实际、实践编程的能力,使对C++系统编程有一个大致的了解。-This course is designed to provide students with a hands they both mental and physical, self-study, information search, independent pract
  3. 所属分类:OS Develop

    • 发布日期:2017-04-07
    • 文件大小:23253
    • 提供者:cuijianzhou
  1. Java3D

    0下载:
  2. Java3D编程实践,Java3D入门必看的书的光盘内容-Java3D programming practice, Java3D entry must see the contents of the book' s CD-ROM
  3. 所属分类:Java Develop

    • 发布日期:2017-05-12
    • 文件大小:2850258
    • 提供者:zzj
  1. LL1

    0下载:
  2. LL分析器 2、 在VC下打开LL1.dsp,阅读工程LL1,LL1为一个加、乘法(适当扩充可为四则)运算表达式的LL1预测语法分析器,规定其文法如下: E->TE’ (1) E’->+TE’ (2) E’->ε (3) T->FT’ (4) T’->*FT’ (5) T’->ε (6) F->(E) (7) F->i (8) 程序设计思路见课本P76,
  3. 所属分类:Compiler program

    • 发布日期:2017-03-24
    • 文件大小:9355
    • 提供者:chivas
  1. jixianbcr

    0下载:
  2. 本书讲述了在极限编程的实践中如何使用开源工具实现自动测试和持续整合的技术。-This book describes the practice in Extreme Programming how to use open source tools for automated testing and continuous integration of technology.
  3. 所属分类:Java Develop

    • 发布日期:2017-06-16
    • 文件大小:24737917
    • 提供者:徐晓柔
  1. VisualCplusplus

    0下载:
  2. Visual C++串口通信开发入门与编程实践一书的配套源代码-Visual C++ serial communication development and programming practice of a book entry matching the source code
  3. 所属分类:source in ebook

    • 发布日期:2017-04-17
    • 文件大小:241283
    • 提供者:postmessage
  1. Java_ff

    0下载:
  2. 本书共165页,近4万字 前言 一、上机实验目的上机实验的目的是提高学生的分析问题、解决问题的能力和实践动手能力,通过上机实践环节理解Java语言的基本结构和程序设计方法。-This book of 165 pages, nearly 4 million words, a computer experiment purposes, preface computer experiment aim is to improve students ability to analyze and solv
  3. 所属分类:Java Develop

    • 发布日期:2017-04-08
    • 文件大小:567737
    • 提供者:zhoujie
  1. game_net_app

    1下载:
  2. 《游戏中的网络编程技术及应用》是学习游戏中网络编程技术的参考书。全书共分三大部分:第一部分介绍网络游戏编程的基本概念和相关基础知识;第二部分讲解了游戏编程的小型应用实例,内容包括基于Internet网络的游戏聊天室开发、多机对战版五子棋以及游戏大厅的创建示例;第三部分是大型网络游戏编程案例,内容包括网络坦克对战和网络斗地主的游戏案例,介绍大型游戏的设计规则、流程以及实现。 《游戏中的网络编程技术及应用》既有完整的基础知识讲解,又有复杂而完整的实例分析,读者能够轻松地将自己所学的理论知识
  3. 所属分类:Chess Poker games

    • 发布日期:2017-05-19
    • 文件大小:5440117
    • 提供者:Tonny.Li
  1. Infraredalarm

    0下载:
  2. Summary: the hardware part of this practice, consolidated the knowledge of welding. Software, we can in the teacher s guidance to complete programming, independent debugging. In the program errors also learn how to modify. Until the whole program don
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-02
    • 文件大小:240640
    • 提供者:zhana
  1. XINDE

    0下载:
  2. 一个菜鸟的编程经验 关于输入输出重定向 从基础开始 附有练习题一道-Programming experience in a rookie on the basis of input and output redirection from the start, together with practice questions
  3. 所属分类:IT Hero

    • 发布日期:2017-04-24
    • 文件大小:10658
    • 提供者:Leonidas
  1. LearnVC

    0下载:
  2. 通过编写三维游戏来学习编程,使用OpenGL,是练习VC的理想代码-Through the preparation of three-dimensional game to learn programming, using OpenGL, a practice the ideal code VC
  3. 所属分类:OpenGL program

    • 发布日期:2017-05-26
    • 文件大小:9672411
    • 提供者:沙泥
  1. PHP.PROFESSIONAL.PROJECTS

    0下载:
  2. 本书是学习PHP编程的优秀参考书。本书既有详细的概念说明,又有复杂而完整的实例代码,读者能够轻松地将自己所学的理论知识付诸实践。本书适用于各个层次的PHP程序员。-This book is an excellent reference book to learn PHP programming. Detailed descr iption of both the concept of the book, but also complex and complete example code, th
  3. 所属分类:WEB(ASP,PHP,...)

    • 发布日期:2017-06-17
    • 文件大小:27110400
    • 提供者:A
« 1 2 ... 5 6 7 8 9 1011 12 13 14 15 ... 25 »
搜珍网 www.dssz.com