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

搜索资源列表

  1. lab8

    0下载:
  2. 多态描述的练习,掌握虚函数的定义方法和运行时多态的实现机制,从而理解虚函数的作用。 掌握纯虚函数的定义方法,理解抽象基类的作用-Polymorphic exercises described master virtual function definition and run-time polymorphism implementation mechanism, in order to understand the role of virtual functions. Grasp the d
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-14
    • 文件大小:33336
    • 提供者:胡佳
  1. Shape

    0下载:
  2. C++继承与多态练习程序,基类为图形类,子类包括圆形、方形、三角形等。-The C++ inherited polymorphic exercises program, the base class is a graphics class, subclass include round, square, triangle.
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-08
    • 文件大小:9937
    • 提供者:Conan
  1. PolymorphicCrypterC

    0下载:
  2. polymorphic crypter coded in C/C++
  3. 所属分类:Windows Kernel

    • 发布日期:2017-11-21
    • 文件大小:39574
    • 提供者:niggity
  1. head

    0下载:
  2. 初学者对于多态的概念总是理解不清楚,一下通过几个实例在理解多态。 多态描述的是使用基类的指针或引用操作多个类型的能力。 我们知道,子类的指针是可以隐式转化为父类的,所以我们在进行程序设计的时候如果要对一个未知的类型进行处理,可以在方法声明时把参数的类型声明为父类的指针。 这要我们就是实现了根据传入的类型执行不同的方法。这里的关键是子类在重写父类的虚方法时是在虚方法表的相应位置对父类虚方法实现覆盖。-The beginners always understand the c
  3. 所属分类:source in ebook

    • 发布日期:2017-11-29
    • 文件大小:1021
    • 提供者:robertrow
  1. Software-Engineer

    0下载:
  2. 实现类的集成以及多态性表现。提供大家这些方面的一个小练习-Class integration and polymorphic performance. These areas a small practice
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-23
    • 文件大小:7320
    • 提供者:name
  1. wollic2007_APDI

    0下载:
  2. Intelligent Polymorphic Dynamic Agents: Theory and Implementation Technique Artificial Inteligence
  3. 所属分类:Development Research

    • 发布日期:2017-05-02
    • 文件大小:601945
    • 提供者:michael vidigal
  1. Tetris

    0下载:
  2. 多线程C#版俄罗斯方块,经典多态思想,有助于初学者学习-Multithreaded c# version of tetris, classic polymorphic, can help beginners to learn
  3. 所属分类:CSharp

    • 发布日期:2017-05-06
    • 文件大小:1100380
    • 提供者:潘强
  1. shape

    0下载:
  2. 深入理解了继承及其基本知识点 深入理解了多态 了解了多态的多级指针实现机制 了解了三种继承方式 -In-depth understanding and basic knowledge of inheritance In-depth understanding of the polymorphic Understanding of the multi-level multi-state pointer implementation mechanism
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-03
    • 文件大小:526237
    • 提供者:王磊
  1. shape111

    0下载:
  2. 深入理解了继承及其基本知识点 深入理解了多态 了解了多态的多级指针实现机制 了解了三种继承方式 -请键入文字或网站地址,或者上传文档。 取消 Shēnrù lǐjiěle jìchéng jí qí jīběn zhīshì diǎn shēnrù lǐjiěle duō tài liǎojiěle duō tài de duō jí zhǐzhēn shíxiàn jīzhì liǎojiěle sān zhǒng jìchéng fāngshì
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-03
    • 文件大小:526239
    • 提供者:王磊
  1. cellular-automata

    0下载:
  2. 多态概率元胞自动机森林火灾模型及应用,是用MATLAB的元胞自动机实现在森林中的应用-Polymorphic forest fire probability cellular automata model and application of MATLAB is the application of cellular automata to achieve in the forest
  3. 所属分类:Algorithm

    • 发布日期:2017-04-17
    • 文件大小:419293
    • 提供者:xiashaoyan
  1. PolyList

    0下载:
  2. 这是一个多态性链表,在一条链表上可以存在着不同的节点,不针对节点,对链表的处理还是比较全面的-This is a polymorphic list, the list can exist on a different node, the node is not targeted on the list is quite comprehensive treatment
  3. 所属分类:Console

    • 发布日期:2017-04-24
    • 文件大小:254825
    • 提供者:fananjie
  1. multi

    0下载:
  2. c++多态的例子,初学者适用,有助于理解-Examples c++ polymorphic, beginners applicable, helps to understand
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-30
    • 文件大小:403448
    • 提供者:sunjin
  1. ExtendsDemo

    0下载:
  2. * 继承关系 * 1.子类继承父类的属性和方法,父类的属性和方法被所有子类共享 * 2.子类多种多样,子类是多态的 * 业务案例:四格方块(Tetromino)有七种(I,J,L,S,Z,T,O) * 实现方式: * 利用继承关系实现,其中四格方块是父类,七种方块是 * 子类,在父类定义四格数组的属性,子类就自动继承了 * 四格属性。 * 定义四格方块类(Tetronimo),属性:4格子,方法:下落 * 子类型继承4格
  3. 所属分类:software engineering

    • 发布日期:2017-04-02
    • 文件大小:1260
    • 提供者:Kevin
  1. vb-Polymorphic-interface

    0下载:
  2. 针对vb6.0不是面向对象的编程,如何实现的多态接口-In view of the VB6.0 is not object oriented programming, polymorphism interface to realize
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-29
    • 文件大小:18062
    • 提供者:lvming
  1. RS485-V4

    0下载:
  2. LabVIEW8.6环境下,可发送和接收帧头+modbus报文+帧尾的数据。程序易于修改,含有多态函数,子函数及一个交流负载通信的实例函数。-LabVIEW8.6 environment, can send and receive tail frame head+ modbus message+ frame data. Easy to modify, the program contains polymorphic function, communication function and a a
  3. 所属分类:LabView

    • 发布日期:2017-05-03
    • 文件大小:807343
    • 提供者:yuke
  1. Polymorphism

    0下载:
  2. A polymorphic file infector which infects files by writing its code to other files-A polymorphic file infector which infects files by writing its code to other files...
  3. 所属分类:CSharp

    • 发布日期:2017-04-27
    • 文件大小:21651
    • 提供者:_The_Hacker_01
  1. src

    0下载:
  2. 通过接口实现多态的小程序,实例是通过接口来完成多态数组的应用。-Through the interface implementation of polymorphic small programs
  3. 所属分类:Java Develop

    • 发布日期:2017-04-12
    • 文件大小:1521
    • 提供者:huzi
  1. DuoTai

    0下载:
  2. VC++一个非常实用多态的小例子,提供大家熟悉C语言多态特性的使用。-VC++ A very practical example of polymorphic small to provide everyone familiar with the C language the use of multi-modal characteristics.
  3. 所属分类:Embeded Linux

    • 发布日期:2017-04-15
    • 文件大小:5850
    • 提供者:ji2735602
  1. ReloadOperate1

    0下载:
  2. VC与C++开发基础 操作符重载实现编译多态,复数的加法运算,ReloadOperate的程序源码-VC and C++ to develop basic operator overloading to achieve compile polymorphic plural addition operator, ReloadOperate, program source code
  3. 所属分类:Driver Develop

    • 发布日期:2017-04-15
    • 文件大小:7343
    • 提供者:yinag60i558
  1. Bank-system-CPP-course-homework

    0下载:
  2. 具有多态性的银行系统程序C++,作业,实验报告-Banking system programs polymorphic C++, homework, lab reports
  3. 所属分类:software engineering

    • 发布日期:2017-04-30
    • 文件大小:71591
    • 提供者:李芳
« 1 2 3 45 »
搜珍网 www.dssz.com