Welcome![Sign In][Sign Up]
Location:
Search - 框架分析

Search list

[OtherAutoboot源码分析框架版

Description: 对autoboot源代码的分析报告。分析了autoboot的原理、安装和代码的框架结构。-right Autoboot source code analysis. Autoboot analysis of the principle, the installation of the framework and code structure.
Platform: | Size: 483966 | Author: 会朋 | Hits:

[Printing programMFC应用程序框架打印预览功能分析与扩展

Description: MFC应用程序框架打印预览功能分析与扩展-MFC application framework Print Preview function analysis and expansion
Platform: | Size: 51075 | Author: 东东 | Hits:

[Software Engineeringkonquerorembeded

Description: 该文档分析了嵌入式linux操作系统下的konqueror浏览器的设计思想和框架分析。-the document analyzes the embedded Linux operating system under the konqueror browser design thinking to the framework and analysis.
Platform: | Size: 227195 | Author: wxs | Hits:

[Other resourceUCGUI3-24

Description: 提供了ucgui3.24的源码及其源码框架分析
Platform: | Size: 4107538 | Author: wang bo | Hits:

[JSP/JavaJUnit设计模式分析及简化的JUnit代码

Description: JUnit设计模式分析及简化的JUnit代码 Junit 中的设计模式 感谢刘兵同志 (技术顾问 bliu76@yeah.net) JUnit 是一个优秀的Java 单元测试框架,由两位世界级软件大师Erich Gamma 和 Kent Beck 共同开发完 成。本文将向读者介绍在开发JUnit 的过程中是怎样应用设计模式的。-JUnit design pattern to simplify the analysis and code Junit JUnit the design patterns thank Comrade Liu Bing (technical adviser bliu76@yeah.net) is an excellent JUnit Java unit testing framework, by two world-class software Masters Erich Gamma and Kent Beck completed joint development. In this paper, readers will be introduced in the development of JUnit is the process of how the application of design patterns.
Platform: | Size: 157097 | Author: 清风 | Hits:

[Other resourcewindml

Description: VxWorks的WindML图形界面程序的框架分析,希望对大家与帮助
Platform: | Size: 158702 | Author: sdf | Hits:

[File Operate记事本源码分析

Description: Visual C++中的记事本,本源码对MFC的单文档作了比较详尽的说明,适合初学者入门学习参考,了解MFC单文档框架结构-Visual C of the notebook, the source of MFC single document made a more detailed note, suitable for beginners learning portal reference understanding MFC single document frame structure
Platform: | Size: 18658 | Author: 昭君 | Hits:

[PHPphp敏捷开发框架CodeIgniter

Description: 译序 前言 第一章 对 CodeIgniter 的介绍 1.1 CodeIgniter 能为你做什么? 1.1.1 节省时间 1.1.2 使你的网站更健壮 1.1.2.1 确保你的链接自动更新 1.1.2.2 防止对数据库的攻击:对表单输入的数据进行校验和处理 1.1.3 增强你的代码 1.1.3.1 发送 Email 和附件很简单 1.1.3.2 压缩用户要下载的文件以加快下载速度 1.2 CodeIgniter 是什么?框架又是什么? 1.3 关于开发者 1.4 “开源”商业模式 1.5 CI 不能做什么 1.6 许可协议 1.7 总结 第二章 2 分钟:建立一个 CodeIgniter 网站 2.1 准备知识 2.2 安装 CodeIgniter 2.3 分析文件结构 2.4 配置文件 2.5 它能工作吗? 2.6 总结 第三章 分析网站结构 3.1 MVC—到底有什么用? 3.2 CI 的网站结构:控制器和视图 3.2.1 Welcome 控制器 3.2.2 让视图开始工作 3.2.3 默认控制器 3.3 CodeIgniter 语法规则 3.3.1 控制器 3.3.2 视图 3.4 CI 网站上的文件或类的类型 3.5 这些文件夹的含义? 3.6 设计一个较好的视图 3.7 设计一个较好的控制器 3.7.1 把参数传给一个函数 3.7.2 传递数据到视图 3.8 CI 中的类彼此之间如何操控 3.8.1 调用视图 3.8.2 直接地调用函数 3.8.3 与控制器互动 3.8.4 这就像一个鸡蛋杯 3.8.5 一个 CI 辅助函数的例子:URL 辅助函数 3.8.6 一个简单的类库例子:创建一个菜单 3.9 总结 第四章 使用 CI 简化数据库开发 4.1 配置设置 4.2 为我们的网站设计数据库 4.3 Active Record 4.3.1 使用 Active Record 类的优点 4.3.1.1 节省时间 4.3.1.2 自动机制 4.3.2 “读取”查询 4.3.3 显示查询结果 4.3.4 “创建”和“更新”查询 4.3.5 “删除”查询 4.3.6 Active Record 和传统 SQL 编程的结合 4.4 总结 4.5 附录:使用 MYSQL 查询语句创建“websites”数据库 第五章 简化 HTML 页面和表单的设计 5.1 编写视图 5.2 PHP 语法的长格式和短格式 5.3 嵌套视图 5.4 网站架构的现实问题 5.5 CI 的表单辅助函数:输入数据 5.5.1 使用表单辅助函数的好处之一:清楚 5.5.2 使用表单辅助函数的好处之二:自动化 5.6 我的“Display”模型 5.7 CI 的验证类:方便地检验数据 5.7.1 设置验证规则 5.7.2 设置控制器 5.7.3 设置表单 5.8 总结 第六章 简化使用 Session 和安全 6.1 开始用 CI 设计一个实际的网站 6.2 关于网站 6.3 安全/Session:使用另一个 CI 类库 6.3.1 使 Session 更安全 6.4 安全 6.5 总结 第七章 CodeIgniter 和对象 7.1 面向对象编程 7.1.1 CI“超级对象”的工作原理 7.1.2 引用复制 7.2 在 CI“超级对象”中加入你自己的代码 7.3 CI“超级对象”的问题 7.4 总结 第八章 用 CI 测试你的代码 8.1 为什么测试,为谁测试? 8.2 CI 的错误处理类 8.3 CI 的单元测试类 8.3.1 什么时候使用单元测试 8.3.2 单元测试的示例 8.4 CI 的基准测试类 8.5 CI 的评测器类 8.6 用“模拟”数据库来做测试 8.7 控制和时间安排 8.8 总结 第九章 用 CI 通信 9.1 使用 FTP 类测试远程文件 9.2 机器之间的对话—XML-RPC 9.2.1 使 XML-RPC 的服务器与客户端交互 9.2.2 格式化 XML-RPC 数据交换 9.2.3 调试 9.2.4 XML-RPC 带来的问题? 9.3 与人交流的工具:Email 类 9.4 总结 第十章 CI 如何帮助提供动态的数据 10.1 日期辅助函数:转换和本地化日期 10.2 使用文本和 Inflector 辅助函数 10.3 国际化:语言类 10.4 编写 HTML 表格的好方法:表格类 10.5 缓存网页 10.6 总结 第十一章 使用 CI 处理文件和图片 11.1 文件辅助函数 11.2 下载辅助函数 11.3 文件上传类 11.4 CI 的图像类 11.5 用 CI Zip 类压缩文件很容易 11.6 总结 第十二章 产品版本、升级和重大决定 12.1 连接:检查 Config 文件 12.1.1 URL 12.1.2 数据库 12.1.3 其它 config 文件 12.2 找出 PHP 4/5 和操作系统间的差异 12.2.1 诊断工具 12.3 应对 CI 新版本带来的变化 12.3.1 如何装载模型,以及如何调用它们 12.3.2 如何初始化你自己的类库 12.4 如果有了新版 CI,我需要更新吗? 12.5 如何修改 CI 的基础类 12.6 总结 第十三章 快捷的 CRUD 及其配合使用 13.1 CRUD 模型:设计原理 13.2 标准的控制器格式 13.3 数据库表 13.4 模型的心脏:数组 13.5 CRUD 模型 13.5.1 Showall 函数 13.5.1.1 读取数据 13.5.1.2 Delete 和 Trydelete 函数 13.5.2 Insert 函数 13.5.3 Insert2 函数 13.5.4 测试套件 13.6 总结 第十四章 审视 CI 14.1 一些代码:“do_test”模型 14.2 一个平衡表 14.2.1 CI 能提供帮助的地方:结构 14.2.2 CI 能提供帮助的地方:简化 14.2.3 CI 能提供帮助的地方:额外功能 14.3 CI 的问题 14.3.1 完整性 14.3.2 易用性 14.4 总结 第十五章 资源和扩展 15.1 CI 的用户论坛 15.2 视频教程 15.2.1 可用的插件和类库 15.2.2 AJAX/Javascript 15.2.3 身份验证 15.2.4 外部网站 15.2.5 比较:使用哪个图表类库? 15.2.6 CRUD:新领域 15.2.7 其它编程资源,例如 Xampplite、MySQL 和 PHP 15.3 总结
Platform: | Size: 1176859 | Author: 280453778@qq.com | Hits:

[Develop ToolsAndroid-framework详细分析

Description: android-framework的详细分析,详细讲解了framework的一些理论上的知识和框架
Platform: | Size: 3024776 | Author: duxiaoh1986@163.com | Hits:

[Books《ARCGIS地理信息系统空间分析实验教程》电子版

Description: 目录 前言 第一章 导论  1.1 地理信息系统   1.1.1 基本概念   1.1.2 GIS系统构成   1.1.3 GIS功能与应用   1.1.4 GIS技术与发展  1.2 GIS空间分析   1.2.1 空间分析   1.2.2 基于GIS的空间分析   1.2.3 常用GIS平台空间分析功能比较  1.3 ArcGIS 9概述   1.3.1 ArcGIS 9体系结构   1.3.2 ArcGIS 9软件特色   1.3.3 ArcGIS 9空间分析 第二章 ArcGIS应用基础  2.1 ArcMap基础   2.1.1 ArcMap的窗口组成   2.1.2 新地图文档创建   2.1.3 数据层的加载   2.1.4 数据层的基本操作   2.1.5 数据层的保存  2.2 ArcCatalog应用基础   2.2.1 ArcCatalog基础操作   2.2.2 目录内容浏览   2.2.3 数据搜索   2.2.4 地图与图层操作   2.2.5 地理数据输出  2.3 Geoprocessing空间处理框架   2.3.1 空间处理框架的基本介绍   2.3.2 ArcToolbox应用基础   2.3.3 ArcToolBox内容简介 第三章 空间数据的采集与组织  3.1 Shapefile文件创建   3.1.1 创建Shapefile和dBASE表   3.1.2 添加和删除属性项  3.2 Coverage文件创建   3.2.1 创建新的Coverage和INFO表   3.2.2 建立拓扑   3.2.3 定义Coverage的坐标系统   3.2.4 Coverage维护操作  3.3 Geodatabase数据库创建   3.3.1 Geodatabase概述   3.3.2 Geodatabase建立的一般过程   3.3.3 创建一个新的Geodatabase   3.3.4 建立数据库中的基本组成项   3.3.5 向Geodatabase加载数据   3.3.6 进一步定义数据库  3.4 数据编辑   3.4.1 图形编辑   3.4.2 属性编辑  3.5 实例与练习   3.5.1 某地区地块的拓扑关系建立   3.5.2 某市区几何网络的建立 第四章 空间数据的转换与处理  4.1 投影变换   4.1.1 定义投影   4.1.2 投影变换   4.1.3 数据变换  4.2 数据格式转换   4.2.1 数据结构转换   4.2.2 数据格式转换  4.3 数据处理   4.3.1 数据裁切   4.3.2 数据拼接   4.3.3 数据提取  4.4 练习:数据更新变换 第五章 空间数据的可视化表达  5.1 数据符号化   5.1.1 矢量数据符号化   5.1.2 栅格数据符号化  5.2 专题地图编制   5.2.1 版面设计   5.2.2 制图数据操作   5.2.3 地图标注 …… 第六章 GIS空间分析导论 第七章 矢量数据的空间分析 第八章 栅格数据的空间分析 第九章 三维分析 第十章 地统计分析 第十一章 水文分析 第十二章 空间分析建模
Platform: | Size: 16832035 | Author: hello820 | Hits:

[DocumentsBREW+Applet框架

Description: 通过一个Applet介绍BREW下Applet的运行环境,然后分析如何在一个Module中实现多个Applet的方法,以及BREW中分布在不同的Module中的各个Applet之间的启动交互关系。
Platform: | Size: 752128 | Author: kinghy | Hits:

[DocumentsMFC框架分析

Description: 介绍了VC 中MFC框架。对于一般人来说,还是很有价值的。
Platform: | Size: 113983 | Author: 972858082@qq.com | Hits:

[JSP/JavaJUnit设计模式分析及简化的JUnit代码

Description: JUnit设计模式分析及简化的JUnit代码 Junit 中的设计模式 感谢刘兵同志 (技术顾问 bliu76@yeah.net) JUnit 是一个优秀的Java 单元测试框架,由两位世界级软件大师Erich Gamma 和 Kent Beck 共同开发完 成。本文将向读者介绍在开发JUnit 的过程中是怎样应用设计模式的。-JUnit design pattern to simplify the analysis and code Junit JUnit the design patterns thank Comrade Liu Bing (technical adviser bliu76@yeah.net) is an excellent JUnit Java unit testing framework, by two world-class software Masters Erich Gamma and Kent Beck completed joint development. In this paper, readers will be introduced in the development of JUnit is the process of how the application of design patterns.
Platform: | Size: 156672 | Author: 清风 | Hits:

[File Operate记事本源码分析

Description: Visual C++中的记事本,本源码对MFC的单文档作了比较详尽的说明,适合初学者入门学习参考,了解MFC单文档框架结构-Visual C of the notebook, the source of MFC single document made a more detailed note, suitable for beginners learning portal reference understanding MFC single document frame structure
Platform: | Size: 18432 | Author: 昭君 | Hits:

[OtherAutoboot源码分析框架版

Description: 对autoboot源代码的分析报告。分析了autoboot的原理、安装和代码的框架结构。-right Autoboot source code analysis. Autoboot analysis of the principle, the installation of the framework and code structure.
Platform: | Size: 483328 | Author: 会朋 | Hits:

[Printing programMFC应用程序框架打印预览功能分析与扩展

Description: MFC应用程序框架打印预览功能分析与扩展-MFC application framework Print Preview function analysis and expansion
Platform: | Size: 51200 | Author: 东东 | Hits:

[Windows Developframe

Description: 框架分析软件。图形输入界面。输出内力和内力图。-The software of Framework analysis. Graphical input interface. Internal force and internal force map as the output.
Platform: | Size: 1996800 | Author: 江中侠 | Hits:

[DocumentsANSYS简单框架结构地震分析算例

Description: ANSYS地震算例分析,模态分析,时程分析,静力分析(ANSYS earthquake example analysis, modal analysis, time history analysis, static analysis)
Platform: | Size: 1218560 | Author: samuraibb | Hits:

[JSP架构探险 从零开始写javaweb框架

Description: 《架构探险——从零开始写Java Web框架》首先从一个简单的 Web 应用开始,让读者学会如何使用IDEA、Maven、Git等开发工具搭建 Java Web 应用;接着通过一个简单的应用场景,为该 Web 应用添加若干业务功能,从需求分析与系统设计开始,带领读者动手完成该 Web 应用,完善相关细节,并对已有代码进行优化;然后基于传统 Servlet 框架搭建一款轻量级 Java Web 框架("Architecture exploration from scratch Java Web framework" from the first to write a simple Web application, allowing readers to learn how to use the IDEA, Maven, Git and other development tools to build the Java Web application; then through the application of a simple scene, adding some business functions for the Web application, starting from the needs analysis and system do the design, lead the reader Web application, improve the relevant details, and optimize existing code; then based on the traditional Servlet framework to build a lightweight Java Web framework)
Platform: | Size: 78115840 | Author: paliumh | Hits:

[Other框架结构ansys分析

Description: 利用ansys实现框架结构的地震有限元建模和分析(Seismic finite element modeling and analysis of frame structure by using ANSYS)
Platform: | Size: 2048 | Author: 山人君 | Hits:
« 12 3 4 5 6 7 8 9 10 ... 45 »

CodeBus www.codebus.net