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

OBJECT-oriented

  • 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

  • Visual tracking is one of the key components for robots to accomplish a given task in a dynamic env

    Visual tracking is one of the key components for robots to accomplish a given task in a dynamic environment, especially when independently moving objects are included. This paper proposes an extension of Adaptive Visual Servoing (hereafter, AVS) for unknown moving object tracking. The method utilizes binocular stereo vision, but does not need the knowledge of camera parameters. Only one assumption is that the system need stationary references in the both images by which the system can predict the motion of unknown moving objects. The basic ideas how we extended the AVS method such that it can track unknown moving objects are given and formalized into a new AVS system. The experimental results with proposed control architecture are shown and a discussion is given.

    标签: components accomplish tracking dynamic

    上传时间: 2013-12-11

    上传用户:lizhen9880

  • Java MP3 Player, Here s a list of features: - Reads, creates, updates, and removes id3v2.3 and id3

    Java MP3 Player, Here s a list of features: - Reads, creates, updates, and removes id3v2.3 and id3v2.4 tags - Reads, creates, updates, and removes id3v1 tags - Extracts MPEG data such as bit rate, sample rate, channel mode, etc. - Calculates playing time of mp3 from mpeg information (no good w/VBR) - Can read and create Winamp styled playlists - Offers other utility classes such as MP3FileFilter and MP3Comparator - NullsoftID3GenreTable object keeps a list of genres for you and can automatically determine the id3v1 genre from an id3v2 string or the other way around

    标签: and features creates updates

    上传时间: 2014-11-21

    上传用户:qq521

  • This sample displays a basic integer calculator powered by the 8051 microcontroller. Although Keil

    This sample displays a basic integer calculator powered by the 8051 microcontroller. Although Keil C51 has a full floating point math library the evaluation version is restricted to 2k of object code, so we have constrained this sample to integer maths in order to fit within this limit. The program for this design was written in C using the Keil uVision 2 IDE for which Proteus VSM provides a Debug Monitor driver. Instructions for configuring Proteus to run in conjunction with the Keil environment can be found by editing the 8051 microcontroller on the schematic (point at it and press CTRL-E) and then clicking on the help button on the Edit Component dialogue form.

    标签: microcontroller calculator Although displays

    上传时间: 2014-12-01

    上传用户:edisonfather

  • For advanced geometry, most apps will prefer to load pre-authored meshes from a file. Fortunately,

    For advanced geometry, most apps will prefer to load pre-authored meshes from a file. Fortunately, when using meshes, D3DX does most of the work for this, parsing a geometry file and creating vertx buffers for us. This tutorial shows how to use a D3DXMESH object, including loading it from a file and rendering it. One thing D3DX does not handle for us is the materials and textures for a mesh, so note that we have to handle those manually.

    标签: pre-authored Fortunately advanced geometry

    上传时间: 2013-12-26

    上传用户:sssl

  • This GLib version 2.16.1. GLib is the low-level core library that forms the basis for projects such

    This GLib version 2.16.1. GLib is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system.

    标签: GLib the low-level projects

    上传时间: 2013-12-19

    上传用户:tb_6877751

  • 菜单实现的主要技术为Javascript, DOM, XML 不会被任何标签覆盖

    菜单实现的主要技术为Javascript, DOM, XML 不会被任何标签覆盖,一般的菜单会被SELECT,OBJECT等标签覆盖。 可以跨过框架,譬如一个frameset中有两个frame,上一个frame放菜单,下一个frame放具体内容,那么菜单可以悬浮于下一个frame之上。 在添加菜单数据时,通过指定父子菜单的ID来达到动态菜单的目的。 可使用XML存储菜单数据,一般用作静态菜单。 使用window.createPopup显示菜单,所以只能在IE中使用。

    标签: Javascript DOM XML 菜单

    上传时间: 2014-01-09

    上传用户:wkchong

  • The Inter IC bus or I2C bus is a simple bidirectional two wire bus designed primarily for general co

    The Inter IC bus or I2C bus is a simple bidirectional two wire bus designed primarily for general control and data transfer communication between ICs. Some of the features of the I2C bus are: • Two signal lines, a serial data line (SDA) and a serial clock line (SCL), and ground are required. A 12V supply line (500mA max.) for powering the peripherals often may be present. • Each device connected to the bus is software addressable by a unique address and simple master/ slave relationships exist at all times masters can operate as master-transmitters or as master-receivers. • The I2C bus is a true multi-master bus including collision detection and arbitration to prevent data corruption if two or more masters simultaneously initiate data transfer systems. • Serial, 8-bit oriented, bidirectional data transfers can be made at up to 100 KBit/s in the standard mode or up to 400 KBit/s in the fast mode.

    标签: bus bidirectional primarily designed

    上传时间: 2013-12-11

    上传用户:jeffery

  • With the advent of multimedia, digital signal processing (DSP) of sound has emerged from the shadow

    With the advent of multimedia, digital signal processing (DSP) of sound has emerged from the shadow of bandwidth-limited speech processing. Today, the main appli- cations of audio DSP are high quality audio coding and the digital generation and manipulation of music signals. They share common research topics including percep- tual measurement techniques and analysis/synthesis methods. Smaller but nonetheless very important topics are hearing aids using signal processing technology and hardware architectures for digital signal processing of audio. In all these areas the last decade has seen a significant amount of application oriented research.

    标签: multimedia processing the digital

    上传时间: 2014-01-23

    上传用户:xwd2010