虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

objeCt-orientation

  • GNU Common C++ is a very portable and highly optimized class framework for writing C++ applications

    GNU Common C++ is a very portable and highly optimized class framework for writing C++ applications that need to use threads and support concurrent sychronization, and that use sockets, XML parsing, object serialization, thread-optimized String and data structure classes, etc. This framework offers a class foundation that hides platform differences from your C++ application so that you need not write platform specific code. GNU Common C++ has been ported to compile nativily on most platforms which support either posix threads, or on maybe be used with Debian hosted mingw32 to build native threading applications for Microsoft Windows.

    标签: applications framework optimized portable

    上传时间: 2014-01-02

    上传用户:luke5347

  • AutomaticPropertiesDefaultValues Article_src.zip PropertyInfo[] props = o.GetType().GetPropert

    AutomaticPropertiesDefaultValues Article_src.zip PropertyInfo[] props = o.GetType().GetProperties(BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.Static) for (int i = 0 i < props.Length i++) { PropertyInfo prop = props[i] if (prop.GetCustomAttributes(true).Length > 0) { object[] defaultValueAttribute = prop.GetCustomAttributes(typeof(DefaultValueAttribute), true) if (defaultValueAttribute != null) { DefaultValueAttribute dva = defaultValueAttribute[0] as DefaultValueAttribute if(dva != null) prop.SetValue(o, dva.Value, null) }

    标签: AutomaticPropertiesDefaultValues PropertyInfo Article_src GetPropert

    上传时间: 2014-11-22

    上传用户:xaijhqx

  • Ajax(Asynchronous JavaScript + XML)的定义 基于web标准(standards-based presentation)XHTML+CSS的表示; 使用 DOM

    Ajax(Asynchronous JavaScript + XML)的定义 基于web标准(standards-based presentation)XHTML+CSS的表示; 使用 DOM(Document Object Model)进行动态显示及交互; 使用 XML 和 XSLT 进行数据交换及相关操作; 使用 XMLHttpRequest 进行异步数据查询、检索; 使用 JavaScript 将所有的东西绑定在一起。英文参见Ajax的提出者Jesse James Garrett的原文。 类似于DHTML或LAMP,AJAX不是指一种单一的技术,而是有机地利用了一系列相关的技术。事实上,一些基于AJAX的“派生/合成”式(derivative/composite)的技术正在出现,如“AFLAX”。 含实例源码。

    标签: standards-based Asynchronous presentation JavaScript

    上传时间: 2016-07-03

    上传用户:tfyt

  • This handbook is a concise guide to architecting, designing, and building J2EE applications. It guid

    This handbook is a concise guide to architecting, designing, and building J2EE applications. It guides technical architects through the entire J2EE project, including identifying business requirements, performing use-case analysis, doing object and data modeling, and leading a development team through construction. Whether you are about to architect your first J2EE application or are looking for ways to keep your projects on-time and on-budget, you will refer to this handbook again and again.

    标签: architecting applications designing handbook

    上传时间: 2014-08-06

    上传用户:xuan‘nian

  • IDE开发环境

    IDE开发环境,可以挂载SDCC The BASIC IDE is a new, RAD (Rapid Application Development) IDE (Integrated Development Environment) for the RapidQ programming language. The IDE currently has rich project options, a form designer (similar to Delphi s), and code editor. The BASIC IDE is being coded in Borland® Delphi® . We are currently using Delphi 6, but you should be able to use Delphi 3 or later (Delphi 7 included). Some of the BASIC IDEs features include: Form Designer with support for all of RapidQ s components Flexible Code Editor Project Management Written in OO (Object Oriented) Delphi. Some future items that we are working on are: Code Tip Code Completion CVS Integration Code Editor Macros Point-and-Click access to subroutines, functions, and variables

    标签: IDE 开发环境

    上传时间: 2016-07-05

    上传用户:dapangxie

  • T-kernel 的extension源代码

    T-kernel 的extension源代码,是日本最著名的T-kernel所独有的,适合开发T-kernel的朋友们使用! TK/SE is the program that extends T-Kernel and provides the functions such as a file system and a process management. The TK/SE archive to be provided is comprised of the main portion and the 2 extended file system portions, and TK/SE object is built by adding these to T-Kernel source. a) tkernel_se_1.00.00.tar.gz Main source of T-Kernel/SE b) extfs_fatfs_1.00.00.tar.gz Difference source of T-Kernel/SE extended file system (FAT) c) extfs_cdrom_1.00.00.tar.gz Difference source of T-Kernel/SE extended file system (CD-ROM)

    标签: extension T-kernel 源代码

    上传时间: 2014-01-20

    上传用户:czl10052678

  • Finally: a hands-on, Java-centric workbook companion for the classic Design Patterns! Workbook appro

    Finally: a hands-on, Java-centric workbook companion for the classic Design Patterns! Workbook approach deepens your understanding, builds your confidence, and strengthens your skills. Covers all five categories of design pattern intent: interfaces, responsibility, construction, operations, and extensions. CD-ROM contains all code examples from the book -- plus bonus code examples not found in the book. About the Author: Steven John Metsker is a researcher and author focused on advanced techniques for magnifying the abilities of object-oriented software developers. A rising star in the patterns community, he was recently invited to join the acclaimed Hillside Group. He is author of Building Parsers with Java? (Addison-Wesley).

    标签: Java-centric companion hands-on Patterns

    上传时间: 2013-12-01

    上传用户:1079836864

  • Pegasus is an open-source implementationof the DMTF CIM and WBEM standards. It is designed to be por

    Pegasus is an open-source implementationof the DMTF CIM and WBEM standards. It is designed to be portable and highly modular. It is coded in C++ so that it effectively translates the object concepts of the CIM objects into a programming model but still retains the speed and efficiency of a compiled language. Pegasus is designed to be inherently portable and builds and runs today on most versionsof UNIX(R), Linux, OpenVMS, and Microsoft Windows.

    标签: implementationof open-source standards designed

    上传时间: 2014-09-09

    上传用户:haohaoxuexi

  • 实验8 继承与多态 8.1 实验目的 (1) 理解类的继承

    实验8 继承与多态 8.1 实验目的 (1) 理解类的继承,掌握变量隐藏、方法覆盖的概念。 (2)理解引用类型的变量的赋值转换原则。 (3)理解多态概念,掌握方法的匹配调用原则; (4)理解抽象类与接口的使用; (5)理解this和super的含义及使用。 (6)理解访问控制符的使用 8.2 知识要点 8.2.1 继承的概念 通过类的继承,祖先类的所有成员均将成为子类拥有的“财富”。但是能否通过子类对象直接访问这些成员则取决于访问权限设置。Object类是所有类的祖先。 8.2.2 构造方法与继承关系 构造方法不存在继承关系,子类中是如何给父类继承的属性赋初值呢? 子类通过调用父类的构造方法给父类的属性赋值,在子类的构造方法的第1行可以通过super去调用父类的构造方法,如果没有super调用,则默认调用父类的无参构造方法。所以,在父类中编写构造方法通常均要提供无参构造方法。 8.2.3 对象引用变量赋值原则 可以将子类的对象引用赋值给父类引用变量,由于父类能操作访问属性和方法的子类已全部继承。但将父类引用变量的值赋给子类引用变量就受到限制,必须进行强制转换,编译总是认可强制转换,但运行程序时如果不能正确转换就会报错。

    标签: 8.1 实验

    上传时间: 2016-08-05

    上传用户:baiom

  • sql equipment management system for the Institute of Laboratory office automation management system

    sql equipment management system for the Institute of Laboratory office automation management system an important part of it can lend to the return of the equipment scrapped and a new standardized management, thereby increasing efficiency and avoiding waste of resources.  background database using Access, prospects of development tools using Visual Basic.  The system uses ADO data access technology, and each database table and operation of the field to the type of package, which succeeded in object-oriented programming thinking applied to the database application design.

    标签: management system Laboratory automation

    上传时间: 2016-08-15

    上传用户:784533221