entity framework是微软官方免费提供给大家的一套ORM(Object Relational Mapping对象关系映射)解决方案.它不仅可以帮助我们解决数据缓存的问题,还能在最小的开销下实现完全的OO(Object Oriented面向对象)编程。实乃中小项目中敏捷开发的一大福祉。.....
分类:
其他好文 时间:
2014-11-02 23:50:46
阅读次数:
309
Object Oriented ProgrammingObjects send and receive messages(objects do things!)Objects send messagesMessages are-Composed by the sender-Interpreted b...
分类:
编程语言 时间:
2014-11-01 23:04:53
阅读次数:
219
类图(Class Diagram)简介类图是面向对象分析(OOA,Object-Oriented Analysis)和面向对象设计(OOP,Object-Oriented Deisgn)思想的重要工具,是业务结构建模的重要工具。需求中提到的各种业务概念,人物等,经过抽象后都可以视之为类。将某类东西归...
分类:
其他好文 时间:
2014-10-30 01:44:05
阅读次数:
222
1. 面向对象的基本概念
面向对象包括3部分:面向对象分析(Object Oriented Analysis,OOA),面向对象设计(Object Oriented Design,OOD)以及面向对象编程(Object Oriented Program),面向对象两个重点概念是类和对象。
类:
类是变量与作用于这些变量的方法的集合。
对象:
对象是类进行实例化后的产物,是一个实体。
面...
分类:
Web程序 时间:
2014-10-21 12:18:29
阅读次数:
130
0 导读 缩写:构造函数ctor 析构函数 dtor 1 让自己习惯C++ C++次语言:C, Object_Oriented C++, Template C++, STL 以const, enum, inline替换#define const 成员函数承诺绝对不改变其对象的...
分类:
编程语言 时间:
2014-10-20 09:56:48
阅读次数:
205
基本上每个程序员都听过面向对象(Object-oriented)和基于对象(Object-based)这两个概念。其实这两个概念并没有很明显的界线,不过现在业界比较统一的认为只有完全具有封装、继承、多态三大特点的才能够叫做面向对象,否则即使设计中蕴含了一些对象的概念,也顶多称为基于对象。
基于对象是过程化语言自然演进而来,随着ADT思想的成熟而成熟,七十年代到八十年代初曾经非常流行,但是很快...
分类:
其他好文 时间:
2014-10-17 02:06:23
阅读次数:
155
1,视C++为一种语言联邦,大致分为4个部分: A)C。说到底C++仍是以C为基础。区块、语句、预处理器、内置数据类型、数组、指针等等统统来自C。 B)Object-Oriented C++。这部分也就是C with Classes所诉求的:cla...
分类:
编程语言 时间:
2014-10-12 22:47:19
阅读次数:
242
http://www.delphi2007.net/delphiblog/html/delphi_2004511950333715.html前言 近期,一直在使用 C++ 与 Object Pascal (后面简称 OP)深入学习面向对象编程(Object-Oriented Programmi...
分类:
其他好文 时间:
2014-10-11 13:46:15
阅读次数:
254
Polymorphism is often referred to as the third pillar of object-oriented programming, after encapsulation and inheritance. It has two distinct aspects:
At run time, objects of a derived class may...
分类:
其他好文 时间:
2014-10-10 14:05:54
阅读次数:
158
The language feature most often associated with object-oriented programming is inheritance. Inheritance is the ability to define a new class that is a...
分类:
其他好文 时间:
2014-10-06 20:32:10
阅读次数:
192