搜索资源列表
MyClass
- 这段源程序给出了如何使用自定义类,在主窗口客户显示:“鼠标左肩的单击次数为:0.”然后单击鼠标左肩,数值会增加-this is the source how to use the definition in the category of the main window shows customers : "click of the mouse left shoulder number : 0." then click the mouse left shoulder, num
MyClass
- 自己写的一个基本操作的小类,可以参考一下-aaa
myClass
- 同学录的班级添加等功能,添加同学,上传图片,以及班级留言,发站内信-Classmates to add features such as classes, add students, upload pictures, as well as the message class, the letter points
myclass
- 一个很好的班级同学录,具有上传照片的功能-Classmates of a good class, with the function of photos
myclass
- 根据计算机图形学老师要求完成的一项MFC作业。工程里面包括DDA画线、扫描线填充法、种子填充法、中点画线法以及一些类库函数调用等的演示。-According to computer graphics teacher MFC required to complete an operation. DDA works including paintings inside line, scan line filling, seed filling, in stipple line method as w
MyClass
- 数字图形处理中的自定义类,对于图形处理非常又用-Digital image Processing
MyClass
- 矩形在二维平面上的平移,平移距离由对话框给出-Rectangular two-dimensional plane translation, translation distance is given by the dialog box
MYCLASS
- C图形编程 跳动的小球 利用C图形函数和相关的算法实现小球跳动的效果-C LANGUAGE GRAPHICS PROGRAMMING
myclass
- 图像处理 打开一幅图片 bmp进行简单的图像处理灰度2值化-Open a picture bmp image processing
MyClass
- n皇后问题,这是利用回溯做的,经过验证,绝对正确-n queens problem
MyClass
- 线性规划单纯形法的简单c++实现。可以解较为简单的线性规划方程。-This is about simplex-method of linear-program.It is simply to solve the linear programming equation.
MyClass
- 矩阵运算的一个类,封转了矩阵的相关运算,特征值,求逆-you can do some mathmatical methods with this class,for example :The characteristic value, inverse, etc
myclass
- 构造 函数和析构函数,在对象创建时将它初始化。-Constructor constructor and destructor, it initializes the object is created.
myclass
- 一个不错的学校网站系统建设时用到的班级网站-Class website
myclass
- My Decoration Source Code for Linux.
MyClass
- 实现一个班级网站,管理员与学生类别,同时实现班级通讯,班级相册,个人微博,日志等功能-Implement a class website, administrators and student categories, while achieving class communication, class photo albums, personal micro-blog, logging, and other functions
Myclass
- 实现扫雷初中高级,以及自定义游戏,实现扫雷排行榜,扫雷游戏的声音,历史记录的保存(Minesweeper junior high school, and custom games, mine sweep charts, Minesweeper sounds, historical records preservation)
继承
- 创建实例时,python会自动调用类中的__init__方法,以隐性地为实例提供属性 __init__ 方法被称为构造器 如果类中没有定义__init__方法,实例创建之初仅是一个简单的名称空间 class Myclass: a ="hello world" def __init__(self,x) self.name=x x =Myclass("list") y = Myclass("abc") 重载构造器(Wh