您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. Addison Wesley - Design Patterns Explained: A New Perspective on Object-Oriented Design

  2. Part I: An Introduction to Object-Oriented Software Development Chapter 1. The Object-Oriented Paradigm Overview Before The Object-Oriented Paradigm: Functional Decomposition The Problem o f Requirements Dealing with Changes: Using Functional D
  3. 所属分类:C++

    • 发布日期:2007-09-22
    • 文件大小:1048576
    • 提供者:ojlovecd
  1. 依赖倒置原则 面向对象

  2. Introduction My last article (Mar, 96) talked about the Liskov Substitution Principle (LSP). This principle, when applied to C++, provides guidance for the use of public inheritance. It states that every function which operates upon a reference or p
  3. 所属分类:其它

    • 发布日期:2009-09-24
    • 文件大小:29696
    • 提供者:xiaotina
  1. Object Oriented Principle(面相对象的一些基本原则)

  2. The Dependency Inversion The Interface Segregation The Open-Closed Principle The Single Responsibility Principle ......
  3. 所属分类:专业指导

    • 发布日期:2010-01-20
    • 文件大小:235520
    • 提供者:eitisiks
  1. java设计模式袖珍版

  2. 近年来,大家都开始注意设计模式。那么,到底我们为什么要用设计模式呢?这么多设计模式为什么要这么设计呢?说实话,以前我还真没搞清楚。就是看大家一口一个"design pattern",心就有点发虚。于是就买了本"四人帮"的设计模式,结果看得似懂非懂:看得时候好像是懂了,过一会就忘了。可能是本人比较"愚钝"吧:))最近,有了点感悟。"独乐不如众乐",与大家分享一下,还望指教! 为什么要提倡"design pattern"呢?根本原因是为了代码复用,增加可维护性。那么怎么才能实现代码复用呢?oo界有
  3. 所属分类:其它

    • 发布日期:2010-03-21
    • 文件大小:13312
    • 提供者:huy3025
  1. The Open-Closed Principle

  2. This is the first of my Engineering Notebook columns for The C++ Report. The articles that will appear in this column will focus on the use of C++ and OOD, and will address issues of software engineering. I will strive for articles that are pragmati
  3. 所属分类:C++

    • 发布日期:2007-12-22
    • 文件大小:70656
    • 提供者:agromach
  1. oo design principles

  2. oo设计的原则。 Single Responsibility Principle (SRP) Open/Closed Principle (OCP) Liskov Substitution Principle (LSP) a.k.a. Design by Contract Dependency Inversion Principle (DIP) Interface Segregation Principle (ISP)
  3. 所属分类:专业指导

    • 发布日期:2010-07-17
    • 文件大小:544768
    • 提供者:justshot
  1. C++的多态性实现机制剖析

  2. 开篇:面向对象的设计原则-类设计原则在面向对象设计中,如何通过很小的设计改变就可以应对设计需求的变化,这是令设计者极为关注的问题。为此不少OO先驱提出了很多有关面向对象的设计原则用于指导OO的设计和开发。下面是几条与类设计相关的设计原则。大体框架如下:1. 开闭原则(the Open Closed Principle OCP)2. 替换原则 (the Liskov Substitution Principle LSP)3. 依赖原则 (the Dependency Inversion Prin
  3. 所属分类:C++

    • 发布日期:2008-02-19
    • 文件大小:272384
    • 提供者:cgd_jn
  1. AStar算法(附带所用到的各种结构)

  2. AStar算法的具体C实现,含有界面、论文等等,论文中有所用到的流程图、数据结构、OPEN表、CLOSED表以及状态空间图 还有CLOSED表、OPEN表的搜索过程
  3. 所属分类:其它

    • 发布日期:2010-12-02
    • 文件大小:48128
    • 提供者:songxinjing
  1. The Open-Closed Principle.pdf

  2. Open-Closed Principle,开闭原则,对扩展开放,对修改关闭。
  3. 所属分类:Java

    • 发布日期:2011-02-13
    • 文件大小:70656
    • 提供者:rovermartin
  1. 面向对象六大设计原则

  2. 1、“开-闭”原则(Open-Closed Principle,OCP) 2、里氏替换原则(Liskov Substitution Principle,LSP) 3、依赖倒置原则(Dependence Inversion Principle,DIP) 4、接口隔离原则(Interface Separate Principle,ISP) 5、合成/聚合复用原则(Composite/Aggregate Reuse Principle,CARP) 6、迪米特法则(Law of Demeter,LoD
  3. 所属分类:C#

    • 发布日期:2011-06-15
    • 文件大小:69632
    • 提供者:music0564
  1. Producing Open Source Software How to Run a Successful Free Software Project

  2. Preface ..................................................................................................................... vi Why Write This Book? ....................................................................................... vi Who Shou
  3. 所属分类:其它

    • 发布日期:2011-10-20
    • 文件大小:654336
    • 提供者:babyaries
  1. 七大原则&&六大关系

  2. 七大原则&&六大关系 开-闭原则(Open-Closed Principle, OCP):一个软件实体应当对扩展开发,对修改关闭.说的是,再设计一个模块的时候,应当使这个模块可以在不被修改的前提下被扩展.换言之,应当可以在不必修改源代码的情况下改变这个模块的行为,在保持系统一定稳定性的基础上,对系统进行扩展。这是面向对象设计(OOD)的基石,也是最重要的原则。
  3. 所属分类:Java

    • 发布日期:2011-10-30
    • 文件大小:10240
    • 提供者:a346735048
  1. 代价树的广度优先搜索 带有open表和closed表的显示

  2. 代价树的广度优先搜索 带有open表和closed表的显示
  3. 所属分类:C/C++

    • 发布日期:2012-04-24
    • 文件大小:5120
    • 提供者:gonmenasai
  1. c++ The Open-Closed Principle ocp.pdf

  2. c++ The Open-Closed Principle ocp.pdf
  3. 所属分类:C++

    • 发布日期:2012-07-13
    • 文件大小:70656
    • 提供者:xzh2005227042
  1. Asterisk Server1.4

  2. Asterisk is an open source, converged telephony platform, which is designed primarily to run on Linux. Asterisk combines more than 100 years of telephony knowledge into a robust suite of tightly integrated telecommunications applications. The power
  3. 所属分类:其它

    • 发布日期:2012-07-26
    • 文件大小:14680064
    • 提供者:farawayplace613
  1. Open.Source.for.Entrepreneurs.Best.of.TIM.Review.B019QYW3

  2. The launch of this book commemorates the 20th anniversary of the first internal release of MySQL in 1995. MySQL was one of the first open source programs to show the world the potential of developing a business around open source, and was a pioneer
  3. 所属分类:其它

    • 发布日期:2016-01-06
    • 文件大小:2097152
    • 提供者:ramissue
  1. 开放关闭原则(The open-closed principle)

  2. 开放/封闭原则(The Open-Closed Principle:OCP)是在面向对象设计中,类和模块等必须遵循以下规则: ◇ 对于功能的扩展因该是开放的,即可以追加机能。 ◇ 对于修改是封闭的,即既存的机能的实体是不可以修改的。 以上两条规则就是说“软件实体应当在不修改的前提下扩展” 开放/封闭原则(OCP)是面向对象设计的最基本的原则。也是之后的面向对象设计原则,Package设计原则以及设计模式的基础。
  3. 所属分类:其它

    • 发布日期:2017-10-09
    • 文件大小:70656
    • 提供者:wonderfuljoy
  1. a-new-geometric-notation-for-open-and-closedloop-robots.pdf

  2. a new geometric notation for open and closed-loop robots
  3. 所属分类:专业指导

    • 发布日期:2020-04-28
    • 文件大小:480256
    • 提供者:zhelijun
  1. HotSDN-paper-2014-ONOS-Towards-an-Open-Distributed-SDN-OS.pdf

  2. We present our experiences to date building ONOS (Open Network Operating System), an experimental distributed SDN control platform motivated by the performance, scalability, and availability requirements of large operator networks. We describe and ev
  3. 所属分类:互联网

    • 发布日期:2019-06-29
    • 文件大小:2097152
    • 提供者:fengqiyunran
  1. 如何在父窗口中得知window.open()出的子窗口关闭事件

  2. 代码如下: [removed] var timer var winOpen function IfWindowClosed() { if (winOpen.closed == true) { document.fm_Info.txtValue.value=”child closed” window.clearInterval(timer) } } [removed] <input type=b
  3. 所属分类:其它

    • 发布日期:2020-12-10
    • 文件大小:17408
    • 提供者:weixin_38747818
« 12 3 4 5 6 7 8 9 10 ... 15 »