面向对象
面向对象(Object-oriented):可看做一种程序开发的方式。它将对象做为程序的基本单元,将程序算法和数据封装其中,以提高软件的重用性、灵活性和扩展性。
项目驱动
...专业设计 关键词:数据结构;程序设计;面向对象;项目驱动 [gap=1569]Keyword: Data structures; programming; object-oriented; Project driven ...
对象
面向对象的开发工具应用利用面向对象(Object-Oriented)的方法设计和编制软件已成为九十年代软件开发的一大特征,由于利用面向对象方法构造的程序具有可维护性好,可复用性高的特点,因...
面向对象 ; 对象 ; 对象导向
面向对象数据库
面向对象程序设计 ; 面向对象编程 ; 面向对象的编程
Object-oriented programming (OOP) is a programming paradigm based on the concept of "objects", which are data structures that contain data, in the form of fields, often known as attributes; and code, in the form of procedures, often known as methods. A distinguishing feature of objects is that an object's procedures can access and often modify the data fields of the object with which they are associated (objects have a notion of "this"). In object-oriented programming, computer programs are designed by making them out of objects that interact with one another. There is significant diversity in object-oriented programming, but most popular languages are class-based, meaning that objects are instances of classes, which typically also determines their type.Many of the most widely used programming languages are multi-paradigm programming languages that support object-oriented programming to a greater or lesser degree, typically in combination with imperative, procedural programming. Significant object-oriented languages include C++, Objective-C, Smalltalk, Delphi, Java, C#, Perl, Python, Ruby and PHP.