搜索资源列表
Java
- JAVA的面向对象编程--------课堂笔记 面向对象主要针对面向过程。 面向过程的基本单元是函数。
java小程序
- 简单的java小程序,利用面向对象的思想设计的
用c++编写的时钟和时钟定时器
- 用c++编写的时钟和时钟定时器,主要实现的是定制器的功能,采用面向对象。-a settimer by C++
Dojo-chinese
- dojo中文文档,难的的电子书。dojo,完全面向对象的js框架,简单易学,功能强大-dojo
C++ Primer的随书源代码
- C++ Primer的第三版结合了Stanley Lippman的实践经验和Josée Lajoie对于ANSI/ISO标准C++的深入理解。这本指导书的第三版已经被重新改写过,以便更加精确地讲述标准C++的特性和用法。在本书中,对于C++初学者特别有价值的是一些来自真实世界中的程序例子,它们说明了泛型程序(generic program)的设计、面向对象程序的设计、模板的用法,以及使用标准C++进行程序设计的方方面面。而且,本书也在适当的地方讲到了一些习惯用法以及效率指导。-C Primer
Python_Tkinter
- Python 与 Tkinter 编程 [PDF,中文版图片扫描,全本,554页] 【内容简介】 Thinter 是解释性脚本语言Pyhton的图形界面开发工具包,是一个清晰的、面向对象的图形界面开发工具,它可以让你快速地开发出可以运行在Unix、Macintosh和Windows等系统平台下的Python应用程序。本书详细地介绍了Python语言的语法和函数及其界面的开发方法,重点介绍了在Tkinter可视化平台下的编程方法。本书非常适合各个层次的Python程序员,同时也适合利用Py
femobj-z_soil
- 瑞士某大学编写的著名计算有限元程序Z-Soil的面向对象语言版的-Swiss University, prepared a well-known finite element program calculated Z-Soil of the object-oriented language version of the
Numsequence_Guess
- 大学本科中C++课程的一个课程设计,用C++面向对象的思想设计一个猜数字的游戏。程序已经全部打包上传!-Undergraduate courses in C++, a curriculum design, C++, object-oriented thinking to design a number guessing game. Program have all been packaged uploaded!
ruanjiansheji
- 软件课程设计中可能会用到的源代码,包括面向对象和面向过程-Curriculum design software may be used in the source code, including object-oriented and process-oriented
C语言实现面向对象
- C语言是面向过程的语言,编写的程序干净利落,但是有时候我们还是需要面向对象的,又不想使用C++这种冗杂的语言,可以使用C语言实现面向对象框架(C language is a process oriented programming language, but sometimes we still need to be smooth and clean, object oriented, and do not want to use C++ this miscellaneous language,
crrcle
- 通过一个小程序,介绍面向对象的编程方法(Introduce the object oriented programming method through a small program)
面向对象程序设计实验指导代码
- 大学面向对象程序设计课程的代码,小课课程用到(The code of the university's object-oriented program design course, which is used in a small class)
imageSlide
- 面向对象图片插件,传入参数即可,只需修改css(the picture changing plugin, based on object-orient)
LabVIEW 面向对象设计
- 了解LabVIEW面向对象不错的资料。LabVIEW中内置了操作者框架,来作为实现面向对象的工具。(Understanding LabVIEW object oriented good information. The operator framework is built in LabVIEW as an object oriented tool.)
cssVector.tar
- c语言面向对象,参考github上 c sub sub 库来修改而成,为用户提供最基本的的 c语言 vector 库,操作规则类似与 C++ vector(C language object-oriented, refer to GitHub on the C sub sub library to modify, to provide users with the most basic C language vector library, operating rules similar to C
面向对象设计UML实践(第2版)
- UML面向对象设计(UML object oriented design)
JAVA面向对象编程-试卷B
- 定义一个交通工具类Traffic,该类包含属性:车轮的数量、行驶速度;同时还包含行驶的方法,并包含有参和无参的构造方法。请分别定义汽车类Car(包含油耗的属性,有参的构造方法)、火车类Train(无参的构造方法)、飞机类Plane(包含最大航程的属性,包含无参和有参的构造方法),让他们继承Traffic,并重写行驶的方法。在测试类中分别创建三个子类的对象,并调用行驶的方法。((A vehicle class Traffic is defined, which contains attribute
Java面向对象
- 简介java面向对象,用广大学者更好的学会java面向对象(Java object oriented, with the majority of scholars better learn java object oriented)
PHP面向对象(OOP)编程入门
- PHP 面向对象编程资料 入门初学 必备(PHP object oriented programming data entry, beginner must)
JAVA
- 定义长方体类Cuboid,要求如下:(1)私有成员变量包括长length、宽width和高height;(2)构造方法包括一个公共的空构造方法,一个能够初始化所有成员变量的构造方法;(3)包括所有的setter和getter方法,其中setter方法要求对形参进行验证,例如长、宽和高都大于0;(4)功能方法包括计算表面积getArea()、计算体积getCubage()、判断是否正方体isCube()、输出该长方体的长宽高printCuboid()、绘制该长方体(给出提示信息即可)drawing