上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 19 下一页

2008年5月22日

有关C#常见面试问题

摘要: 如果你能全部正确回答,说明你对C#和.NET Framework有一定深度的了解 阅读全文

posted @ 2008-05-22 21:57 飞天舞者 阅读(653) 评论(0) 推荐(0) 编辑

C#中值类型和引用类型(value type&Reference tyoe)深度探讨

摘要: 在C#中,no matter what language the code is programmed with, 所有的source code都被编译成为IL,然后再CLR(类似于JAVA的虚拟机)上运行。当然,CLR会负责把IL转化为machine language. 但是,不管我们运用那种语言编程,都会存在一些最为常用的数据类型,我们称之为primitive t... 阅读全文

posted @ 2008-05-22 16:55 飞天舞者 阅读(778) 评论(0) 推荐(0) 编辑

2008年5月21日

Some normal compiling and debugging commands for C# 常见C#调试和编译命令

摘要: 1.compile File.cs and generate File.exe编译file.cs 生成file.exe csc file.cs 2.comple File.cs and generate File.dll编译file.cs生成file.dll csc /target:library filel.cs 3.only complie file.cs without g... 阅读全文

posted @ 2008-05-21 11:51 飞天舞者 阅读(269) 评论(0) 推荐(0) 编辑

2008年5月20日

Common Principles in Software Engineering软件工程常见几大原则

摘要: 备注:本文摘自于其他blog. 1、OCP(Open-close principle)开放-封闭原则 是指一个软件实体应当对扩张开放,对修改关闭。 Benifits: 通过扩张已有软件系统,可以提供新的行为,以满足对软件新的需求,使变化中的软件有一定的适应性和灵活性。 已有软件模块,特别是重要的抽象层模块不能再修改,这使得变化中的软件系统有一定的稳定性和延续性... 阅读全文

posted @ 2008-05-20 11:31 飞天舞者 阅读(641) 评论(0) 推荐(0) 编辑

2008年5月13日

[结构型(接口型模式)]Adapter pattern 适配器模式

摘要: 1 Adapter模式的作用 假设存在已经开发好的类及其特定方法,但是在reuse的时候和现有接口之间存在不协调,这时我们必须利用某种机制将已经存在的特定方法转化为另外能够接受的方法。这就是Adapter pattern。 (Adapter pattern是所有模式中最简单直观的模式了 :) ) 2 Adapter模式的分类 Adapter模式的实现分为2种方式。 一种是建... 阅读全文

posted @ 2008-05-13 15:50 飞天舞者 阅读(310) 评论(0) 推荐(0) 编辑

[创建型模式系列]simple factory & factory method 简单工厂类和工厂方法类的概念及区别

摘要: 1.simple factory pattern简单工厂类模式 simple factory is that all products are produced by the respectice concrete method from simple factory. 简单工厂类就是所有其产品都是由简单工厂的具体方法来生产的。 还是以abstract类介绍的桌子生产过程为... 阅读全文

posted @ 2008-05-13 14:25 飞天舞者 阅读(483) 评论(0) 推荐(0) 编辑

[创建型模式系列]Abstract factory of Design Pattern模式设计之抽象工厂模式

摘要: 1 the intention of asbract factory抽象工厂模式的设计意图 to supply interface for a series of related or depedent objects, meanwhile, you do not need to specify the concrete classes。 提供一个创建一系列相关或者... 阅读全文

posted @ 2008-05-13 12:21 飞天舞者 阅读(480) 评论(0) 推荐(0) 编辑

2008年5月10日

PROCESS[进程]

摘要: abstract: A process is an basic element to allocate resource from system. Process concept:[进程的基本概念] Informally, a process is a program in execution. A process is more than the program code, whitch is... 阅读全文

posted @ 2008-05-10 11:04 飞天舞者 阅读(870) 评论(0) 推荐(0) 编辑

2008年5月7日

Process multi-row data with cursor or without cursor[利用游标或者非游标处理多行数据]

摘要: Implement functionality using Cusor /* decription: import data from BomIntraplantRoute_Buckets of ofg_response_staging into ds_in_bom_intraplant_route_bucket of OFG_SLV_DEV created by: Winstion He on... 阅读全文

posted @ 2008-05-07 21:14 飞天舞者 阅读(407) 评论(0) 推荐(0) 编辑

[创建型模式系列]Chain of Responsibility Pattern 责任链模式

摘要: 1 Chain of Responsibility Concepts 责任链基础 Chain of Responsibility is a kind of behaviour pattern for object. In the COR pattern, many objects which are referenced to next form a responsibility ... 阅读全文

posted @ 2008-05-07 11:35 飞天舞者 阅读(382) 评论(0) 推荐(0) 编辑

上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 19 下一页

导航

For more information about me, feel free email to me winston.he@hotmail.com