码迷,mamicode.com
首页 >  
搜索关键字:object-oriented    ( 752个结果
python读书笔记之面向对象的基本概念
面向对象的主要目的是提高程序的重复可用性oop object-oriented programming相近对象 归为类class Bird(object) ##括号中的object,当括号中为object时,说明这个类没有父类(到头了)) have_feather = True way_of_r.....
分类:编程语言   时间:2014-09-21 16:35:00    阅读次数:174
AOP技术应用和研究
面向切面编程(Aspect—Oriented Programming,简称AOP)是一种新的软件丌发技术,它是针对面向对象编程(Object.Oriented Programming,简称oop)在处理横跨多个模块的非核心需求时所表现出来的不足而提出的。 AOP技术应用和研究系列,首先分析了面向对象编程(OOP)的优点和缺点,从而引出AOP技术。并介绍AOP的基本思想和基本概念。并通...
分类:其他好文   时间:2014-09-20 15:27:48    阅读次数:213
Utility Classes Are Evil
A utility class is a class filled with static methods. It is usually used to isolate a "useful" algorithm. However, in an object-oriented world, utility classes are considered a very bad practice. The use of utility classes to be an antipattern. More speci...
分类:其他好文   时间:2014-09-18 18:55:54    阅读次数:237
Method Calling in Perl
This is notes from reading the "object oriented perl programming".Elements of the @_ array are special in that they are not copies of the actual argum...
分类:其他好文   时间:2014-09-10 22:28:51    阅读次数:252
UML基本架构建模--类概述
??Classes类Classes are the most important building block of any object-oriented system. A class is a description of a set of objects that share the sam...
分类:其他好文   时间:2014-09-01 19:08:53    阅读次数:235
Inheritance versus composition
One of the fundamental activities of an object-oriented design is establishing relationships between classes. Two fundamental ways to relate classes are inheritance and composition. Although the co...
分类:其他好文   时间:2014-08-30 19:16:10    阅读次数:279
Java架构师(1) -- 内容概述
Object-Oriented Analysis and Design (面向对象)Applicability of JEE Technology (JEE技术)Design Patterns (设计模式)Legacy Connectivity (传统系统连接)Enterprise JavaBean...
分类:编程语言   时间:2014-08-28 13:00:09    阅读次数:177
PHP利用魔术方法实现准AOP
PHP利用魔术方法实现准AOP 在 传统的OOP(面向对象编程:Object-Oriented Programming)思想里,一般把应用程序分解成若干个的对象,强调高内聚,弱耦合,从而提高应用程序的模块化程度,但是在处理某些问题的时 候,OOP会显得不够灵活,比如说,应用程序里很多业务逻辑都要在操...
分类:Web程序   时间:2014-08-25 11:30:34    阅读次数:178
《effective c++》读书笔记1
条款1:视C++为一个语言联邦 C++包括这四个部分: l  C l  Object-Oriented C++ l  Template C++ l  STL   n  C++高效编程守则视状况而变化,取决于你使用C++的哪一部分   条款2:尽量以const,enum,inline替换#define 下面这个宏夹带着宏实参,调用函数f: #define CALL_WITH_M...
分类:编程语言   时间:2014-08-22 12:55:28    阅读次数:192
条款01:View C++ as a federation of languages.
今天的C++已经是个多重范型编程语言(multiparadigm programming language),一个同时支持过程形式(procedural)、面向对象形式(object-oriented)、函数形式(functional)、泛型形式(generic)、元编程形式(metaprogram...
分类:编程语言   时间:2014-08-21 16:45:44    阅读次数:227
752条   上一页 1 ... 69 70 71 72 73 ... 76 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!