Interview Dictionary for Developer

share all classical questions for Interview
如何定义一个提供异步方法的类
摘要: 本文介绍了如何定义一个提供异步方法的类 仅供参考哦阅读全文

posted @ 2008-10-30 17:23 飞天舞者 阅读(76) | 评论 (0) 编辑

静态链接库LIB和动态链接库DLL的区别 创建和示例
摘要: 静态链接库与动态链接库都是共享代码的方式...阅读全文

posted @ 2008-07-05 14:35 飞天舞者 阅读(10501) | 评论 (0) 编辑

运算转换符static_cast,const_cast,reinterpret_cast,dynamic_cast之间的区别
摘要: 运算转换符static_cast,const_cast,reinterpret_cast,dynamic_cast之间的区别阅读全文

posted @ 2008-07-01 14:56 飞天舞者 阅读(1253) | 评论 (0) 编辑

C++中多态的实现原理
摘要: 本文通过由代码调试和runtime时候的Debug,讲解了多态的实现原理及过程,从而有助于深入理解多态的概念。阅读全文

posted @ 2008-06-30 16:27 飞天舞者 阅读(1193) | 评论 (8) 编辑

C++本质:类的赋值运算符=的重载,以及深拷贝和浅拷贝
摘要: 在面向对象程序设计中,对象间的相互拷贝和赋值是经常进行的操作。
如果对象在申明的同时马上进行的初始化操作,则称之为拷贝运算。例如:
class1 A("af"); class1 B=A;
此时其实际调用的是B(A)这样的浅拷贝操作。
如果对象在申明之后,在进行的赋值运算,我们称之为赋值运算。例如:
class1 A("af"); class1 B;
B=A;
此时实际调用的类的缺省赋值函数B.operator=(A);
不管是浅拷贝还是赋值运算,其都有缺省的定义。也就是说,即使我们不overload这两种operation,仍然可以运行。
那么,我们到底需不需要overload这两种operation 呢?
阅读全文

posted @ 2008-06-03 11:15 飞天舞者 阅读(3747) | 评论 (0) 编辑

数据结构C#实现-二叉查找树的创建,查找,以及各种递归(非递归)遍历算法
摘要: 树是一种非常重要的数据结构,Binary Tree则是树型结构中应用最为广泛。本文给出了C#版本的二叉树的建立,查找,以及各种递归和非递归的遍历算法。阅读全文

posted @ 2008-06-02 18:10 飞天舞者 阅读(506) | 评论 (0) 编辑

经典数据结构之栈的应用-迷宫问题
摘要: Stack的应用非常广泛,如数学公式计算,树的前序遍历等等。阅读全文

posted @ 2008-05-31 14:18 飞天舞者 阅读(1351) | 评论 (0) 编辑

System.Collections深入探讨--如何创建自定义的集合类
摘要: 在System.Collections namespace下面,存在两个class ,分别为ArrayList和 List ,都可以实现对象的数组队列。那么两者之间到底有什么区别呢?如何利用其创建自定义的集合类呢?阅读全文

posted @ 2008-05-29 17:18 飞天舞者 阅读(267) | 评论 (0) 编辑

Garbage Collection Essence--.Net中Garbage Collection深入探讨
摘要: 本文介绍了.Net Framework的垃圾回收机制,及其对managed resource和unmanaged resource的回收方法。阅读全文

posted @ 2008-05-28 15:47 飞天舞者 阅读(124) | 评论 (0) 编辑

C#中的安全策略

posted @ 2008-05-26 15:00 飞天舞者 阅读(131) | 评论 (0) 编辑

C#中不安全代码的编写和指针的应用

posted @ 2008-05-26 11:46 飞天舞者 阅读(507) | 评论 (0) 编辑

CPU Scheduling进程调度算法

posted @ 2008-05-25 14:50 飞天舞者 阅读(628) | 评论 (0) 编辑

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

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

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

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

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

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

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

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

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

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

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

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

The Mediator Pattern of Design Model调停者模式/中介者模式

posted @ 2008-05-05 17:19 飞天舞者 阅读(165) | 评论 (0) 编辑

B-Trees Concepts B-树介绍(都快忘了:))

posted @ 2008-04-28 17:41 飞天舞者 阅读(297) | 评论 (0) 编辑

Interface functionality&Importance接口的功能和重要性

posted @ 2008-04-24 17:33 飞天舞者 阅读(30) | 评论 (0) 编辑

what's the differences between readonly & const in C# 在C#中readonly和const的区别

posted @ 2008-04-24 15:46 飞天舞者 阅读(120) | 评论 (1) 编辑

Assembly Essence-- 程序集深入探讨:程序集结构及部署
摘要: 深入介绍了Assembly的内部机构,Assembly的两种部署方式等阅读全文

posted @ 2008-04-23 17:21 飞天舞者 阅读(123) | 评论 (0) 编辑

how to sign an assembly with a strong name & how to create a pair key怎样通过强名给程序集签名以及如何创建钥匙对?
摘要: 什么是Strong name?怎样通过Strong name给Assembly进行digital signature?阅读全文

posted @ 2008-04-23 16:40 飞天舞者 阅读(593) | 评论 (0) 编辑

the Differences between abstract class & interface in C#接口和抽象类的区别

posted @ 2008-04-23 10:14 飞天舞者 阅读(156) | 评论 (0) 编辑

Data Contract of WCFWCF之数据协议

posted @ 2008-04-22 11:01 飞天舞者 阅读(138) | 评论 (1) 编辑

C#2.0中的泛型基础介绍

posted @ 2008-04-18 14:40 飞天舞者 阅读(72) | 评论 (0) 编辑

Operation Overloading in WCF

posted @ 2008-04-17 16:52 飞天舞者 阅读(46) | 评论 (0) 编辑

Endpoint

posted @ 2008-04-17 10:07 飞天舞者 阅读(30) | 评论 (0) 编辑

C/C++ Basics--function pointer

posted @ 2008-04-08 16:03 飞天舞者 阅读(71) | 评论 (0) 编辑

C/C++ Basic-- the differs between [malloc&free] and [new &delete]

posted @ 2008-04-08 15:05 飞天舞者 阅读(33) | 评论 (0) 编辑

C/C++ Basics-->about #define, const

posted @ 2008-04-08 14:10 飞天舞者 阅读(98) | 评论 (0) 编辑

Thread Basics-- using Timer to trigger Event at a specified internals

posted @ 2008-04-07 12:19 飞天舞者 阅读(74) | 评论 (0) 编辑

Thread Basics(thread synchronization&Asynchronization) -part two

posted @ 2008-04-01 13:41 飞天舞者 阅读(85) | 评论 (1) 编辑

Tread Basics in C#-part one

posted @ 2008-04-01 10:13 飞天舞者 阅读(283) | 评论 (0) 编辑

Event Mechanism in C#

posted @ 2008-03-31 16:02 飞天舞者 阅读(31) | 评论 (0) 编辑

如何给MSMQ发送Message (local computer | remote computer)
摘要: MSMQ可以使得在不同计算机的application之间异步或者同步通讯,而且MSMQ不要求message的发送或者接收端的网络状态,即可以是offline的状态,也可以是online,而MSMQ service会自动检测消息接受或者目标端的状态。MSMQ可以发送各种各样的消息,简单到普通文本,再到transactional message,或者是大型对象的message均可。本文介绍了几种不同类型的消息发送和接收。阅读全文

posted @ 2008-03-31 09:31 飞天舞者 阅读(331) | 评论 (0) 编辑

basic concepts about MSMQ

posted @ 2008-03-31 09:29 飞天舞者 阅读(32) | 评论 (0) 编辑

difference between Truncate and Delete

posted @ 2008-03-03 14:45 飞天舞者 阅读(36) | 评论 (0) 编辑

Data Structure--Reverse LinkList

posted @ 2008-02-26 11:46 飞天舞者 阅读(85) | 评论 (0) 编辑

OPP Basic--if virtual functions are so powerful, can we declare all member functions virtual?

posted @ 2008-02-26 11:32 飞天舞者 阅读(32) | 评论 (0) 编辑

OOP Bisic-desctructor can be virtual,while constructer can not? why?

posted @ 2008-02-26 11:21 飞天舞者 阅读(29) | 评论 (0) 编辑

OOP Basic--Constructor&Destructor
摘要: 本文深刻讲述了为什么有些基类的析构函数要设为virtual?阅读全文

posted @ 2008-02-26 10:59 飞天舞者 阅读(73) | 评论 (0) 编辑

OOP Basic--Is the class declaration right?[const]

posted @ 2008-02-26 10:31 飞天舞者 阅读(27) | 评论 (0) 编辑

OOP Basic--what's the diff between struct & class?

posted @ 2008-02-26 10:27 飞天舞者 阅读(43) | 评论 (0) 编辑

STL template&Container--function point & generic class

posted @ 2008-02-26 09:57 飞天舞者 阅读(45) | 评论 (0) 编辑

STL template&Container--how to change normal function into generic function.

posted @ 2008-02-26 09:45 飞天舞者 阅读(20) | 评论 (0) 编辑

Programming Basic--what is the output of the following code?

posted @ 2008-02-26 09:05 飞天舞者 阅读(28) | 评论 (0) 编辑

Programming Basic--what's the diff between const and #define?

posted @ 2008-02-26 08:58 飞天舞者 阅读(29) | 评论 (0) 编辑

Programming Basic--define a Macro "MIN", which has two parameters and return the less one.

posted @ 2008-02-26 08:53 飞天舞者 阅读(88) | 评论 (0) 编辑

Programming Basic--what's the use of "ifndef/define/endif";

posted @ 2008-02-26 08:51 飞天舞者 阅读(55) | 评论 (0) 编辑

Programming Basic--why we need to add ' extern "C" ' in C++ program when calling the function which is complied by C complier?

posted @ 2008-02-26 08:49 飞天舞者 阅读(41) | 评论 (0) 编辑

Exchange a,b without using other variables

posted @ 2008-02-26 08:42 飞天舞者 阅读(23) | 评论 (0) 编辑

C++的四种cast操作符的区别

posted @ 2008-02-20 10:51 飞天舞者 阅读(173) | 评论 (0) 编辑

just some skills for SQL

posted @ 2008-01-22 16:55 飞天舞者 阅读(28) | 评论 (0) 编辑

insert/process multi-records without cursor

posted @ 2008-01-17 11:34 飞天舞者 阅读(33) | 评论 (0) 编辑

导航

<2012年2月>
2930311234
567891011
12131415161718
19202122232425
26272829123
45678910

公告

昵称:飞天舞者
园龄:4年1个月
粉丝:2
关注:0

搜索

 
 

常用链接

我的标签

随笔分类

随笔档案

相册

积分与排名

  • 积分 - 49362
  • 排名 - 2147

最新评论

阅读排行榜

评论排行榜

推荐排行榜

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