搜索资源列表
mtpso
- 连续型粒子群算法的java实现,可以自己设计粒子群算法(继承Swarm和Particle类),包含有三个个抽象类(Swarm、Particle、Problem),可以继承Problem类自定义新的问题。-continuous particle swarm algorithm to achieve the java can design their own PSO algorithm (inheritance and Particle Swarm), contains an abstract ca
类的学习
- C++学习重点是实现面向对象的设计,抽象出一个类,这是学习类的一些好例子,敬请关注-C study is focused on object-oriented design, from an abstract category, which is kind of learning some good examples, please concerns
treetable
- 用java写得一个treetable实现,可以携带用户自己的数据类。本例带有一个简单得使用例子: 1、导入到Eclipse,把package换成你自己得package 2、运行TreetableMain.java即可 这是本人参考sun公司给出得那个treetable例子写得。重大改进如下: 1、sun公司的例子可能是由于写得较早,里面重写了TreeModel和AbstractTableModel的很多方法。本人改进了它里面的TreeTableModel和TreeTable
大数运算类实例
- 在计算机科学中有一类分常重要的代码工具是抽象的大数运算类,本工程实现对大数加减乘除的封装及实例-in computer science is often an important sub-category of tools is the code of large numbers Operational abstract category, the majority of projects to achieve the arithmetic package and examples
DEMO_3
- 抽象类实现多态 C#版 抽象类实现多态 C#版-abstract class multi-state version of C# abstract multi-state Class C# version of the abstract category of multi-state version of C# abstract multi-state Class C# version of the abstract category of multi-state version of C
hm6
- 抽象类的使用 设计一个类层次,定义一个抽象类--形状,其中包括有求形状的面积的抽象方法。 ----继承该抽象类定义三角型、矩形、圆。 ----编写一个主程序将一个三角形、矩形、圆存入一个数组中,将数组中各类图形的面积输出。-kind of abstract designs a class hierarchy, the definition of an abstract category -- shape, These include the shape of the area fo
接口和抽象类
- 接口和抽象类.rar-interfaces and abstract category. Rar
c++vehicleReport
- c++课程设计类 抽象类 继承 多态 实现文档-c curriculum design category abstract class extends to achieve polymorphism Documents
俄罗斯方块游戏的抽象类
- 该类内部维护了一个矩阵,是由俄罗斯方块抽象出来的 矩阵的每个元素代表方格中的每个单元格,1代表该格有方块,0没有 该类的所有方法都是围绕这个核心矩阵来操作的-internal safeguard such a matrix by Russian abstract squares of the matrix elements of each representative of each grid cells, a representative of the grid with squares 0
3.3.2纯虚函数和抽象类
- 纯虚函数和抽象类。一个有关VC++虚函数的源程序,比较适合VC++初学者。以后我上传一系列这种类型的源程序供大家学习之用。-pure virtual function and abstract category. The VC a virtual function of the source, more suitable for beginners VC. After I uploaded a series of this type of source for all learning.
Shape
- 抽象类Shape,抽象方法:计算面积和显示面积,派生子类矩形和三角形-Abstract class Shape, abstract methods: calculating the area and display area, derived subclass of rectangular and triangular
JavaApplication7
- 定义一个抽象类Shape代表一个形状类,具有一个计算形状的面积的抽象方法,一个具有计算形状的周长的抽象方法。定义一个Shape类的子类Circle类表示一个圆,,此类具有一个表示半径的成员变量,实现这个类,定义一个单独的类测试此类。定义一个Shape类的子类Retangle类表示一个矩形,,此类具有表示高和宽的成员变量,实现这个类,定义一个单独的类测试此类-Define an abstract class Shape represents a shape class, with a calcul
第六章 聚类分析
- 聚类分析指将物理或抽象对象的集合分组为由类似的对象组成的多个类的分析过程。它是一种重要的人类行为。聚类分析的目标就是在相似的基础上收集数据来分类(Clustering analysis refers to the grouping of physical or abstract objects into groups that are composed of similar objects. It is an important human behavior. The goal of clust
CppExp1
- 了解为何使用抽象类,学习通过继承实现代码重用的机制和方法 掌握如何声明函数为纯虚函数 掌握如何利用纯虚函数,编写派生类的覆盖函数(Understand why you use abstract classes and learn how and how to implement code reuse by inheritance Master how to declare a function as a pure virtual function Master how to use th
日期Calendar类详解
- Calendar的中文翻译是日历,实际上,在历史上有着许多种计时的方法。所以为了计时的统一,必需指定一个日历的选择。那现在最为普及和通用的日历就是"Gregorian Calendar"。也就是我们在讲述年份时常用"公元**年"。Calendar 在 Java 中是一个抽象类(Abstract Class),GregorianCalendar 是它的一个具体实现。Calendar.getInstance()中所获得的实例就是一个"Greogria
du
- 定义一个包含两个纯虚函数的抽象类shape: class shape { public: virtual float Area()=0; virtual void SetData(float,float=0)=0; }; 成员函数SetData用于设置几何图形的属性值。成员函数Area()用于求出几何图形的面积。由shape派生出四种几何图形,分别是:三角形、矩形、正方
抽象类-求程序员工资
- c++抽象类编程实验,利用c++抽象类实现程序员的工资计算。(C++ abstract class programming experiment, using c++ abstract class to achieve programmer's wage calculation.)
Java中抽象类和接口的区别
- 在Java语言中,abstract class和interface 是支持抽象类定义的两种机制。正是由于这两种机制的存在,才赋予了Java强大的面向对象能力。abstract class和interface之间在对于抽象类定义的支持方面具有很大的相似性,甚至可以相互替换,因此很多开发者在进 行抽象类定义时对于abstract class和interface的选择显得比较随意。其实,两者之间还是有很大的区别的,对于它们的选择甚至反映出对于问题领域本质的理解、对于设计意图的理解是否正确、合理。本文将
第9章 聚类分析
- 聚类分析指将物理或抽象对象的集合分组为由类似的对象组成的多个类的分析过程。它是一种重要的人类行为。 聚类分析的目标就是在相似的基础上收集数据来分类。聚类源于很多领域,包括数学,计算机科学,统计学,生物学和经济学。在不同的应用领域,很多聚类技术都得到了发展,这些技术方法被用作描述数据,衡量不同数据源间的相似性,以及把数据源分类到不同的簇中。(Clustering analysis refers to the process of grouping a collection of physical
聚类分析matlab程序
- 基于一组数据的聚类分析的应用,聚类分析指将物理或抽象对象的集合分组为由类似的对象组成的多个类的分析过程。它是一种重要的人类行为。 聚类分析的目标就是在相似的基础上收集数据来分类。聚类源于很多领域,包括数学,计算机科学,统计学,生物学和经济学。在不同的应用领域,很多聚类技术都得到了发展,这些技术方法被用作描述数据,衡量不同数据源间的相似性,以及把数据源分类到不同的簇中。(Application of cluster analysis based on a group of data)