由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
DotNet版 - 有人对这些东西感兴趣么?
相关主题
有谁来谈谈yukon么?准备走马观花把GoF 23个pattern过一遍了
我们公司招程序员,有感兴趣的吗?design pattern in Java那本书比较好?
好冷清啊求教:Facade Pattern vs Static Variable
How many people use design patterns when coding?最近对Mechanical Trading感兴趣,有人想一起研究么
关于design pattern你们经常浏览science和nature杂志不?
请问准备面试的OO design题目要了解哪些design pattern?长期提供Twitter内推
纯ajax的app是不是比mvc的要难很多要准备java面试, 看什么书比较好?
再来一个design的题谁对Amazon感兴趣的,我可以内部推荐 (software developer)
相关话题的讨论汇总
话题: pattern话题: using话题: developing话题: factory话题: creating
进入DotNet版参与讨论
1 (共1页)
p***n
发帖数: 635
1
正在看这一本讲设计模式的.
要是有人感兴趣的话我就花点时间BRIEF一下.
1 - Developing an Interactive News Site Application Using the Abstract Factory Pattern
2 - Developing an Online Library Application Using the Factory Method Pattern
3 - Developing a Sales Information System Using the Singleton Pattern
4 - Creating a Document Manager Application using the Adapter Pattern
5 - Developing a Patient Tracker System Using the Facade Pattern
6 - Creating a File Directory Structure Using a Composite Pattern
7 - Creating
f********h
发帖数: 149
2
//hand

【在 p***n 的大作中提到】
: 正在看这一本讲设计模式的.
: 要是有人感兴趣的话我就花点时间BRIEF一下.
: 1 - Developing an Interactive News Site Application Using the Abstract Factory Pattern
: 2 - Developing an Online Library Application Using the Factory Method Pattern
: 3 - Developing a Sales Information System Using the Singleton Pattern
: 4 - Creating a Document Manager Application using the Adapter Pattern
: 5 - Developing a Patient Tracker System Using the Facade Pattern
: 6 - Creating a File Directory Structure Using a Composite Pattern
: 7 - Creating

b*e
发帖数: 3845
3
Yes, please.

【在 p***n 的大作中提到】
: 正在看这一本讲设计模式的.
: 要是有人感兴趣的话我就花点时间BRIEF一下.
: 1 - Developing an Interactive News Site Application Using the Abstract Factory Pattern
: 2 - Developing an Online Library Application Using the Factory Method Pattern
: 3 - Developing a Sales Information System Using the Singleton Pattern
: 4 - Creating a Document Manager Application using the Adapter Pattern
: 5 - Developing a Patient Tracker System Using the Facade Pattern
: 6 - Creating a File Directory Structure Using a Composite Pattern
: 7 - Creating

L*******r
发帖数: 1011
4
好啊。有趣。
Design patterns是我们原来的课本。:)

Factory Pattern
Pattern
Pattern
Pattern

【在 p***n 的大作中提到】
: 正在看这一本讲设计模式的.
: 要是有人感兴趣的话我就花点时间BRIEF一下.
: 1 - Developing an Interactive News Site Application Using the Abstract Factory Pattern
: 2 - Developing an Online Library Application Using the Factory Method Pattern
: 3 - Developing a Sales Information System Using the Singleton Pattern
: 4 - Creating a Document Manager Application using the Adapter Pattern
: 5 - Developing a Patient Tracker System Using the Facade Pattern
: 6 - Creating a File Directory Structure Using a Composite Pattern
: 7 - Creating

st
发帖数: 1685
5
I read part of it, IMHO, it's quite different from what I experience in real
projects.

【在 L*******r 的大作中提到】
: 好啊。有趣。
: Design patterns是我们原来的课本。:)
:
: Factory Pattern
: Pattern
: Pattern
: Pattern

L*******r
发帖数: 1011
6
which book do you mean?
Design patterns? hehe. It's a good one.
Tell us your experience, please. :)

【在 st 的大作中提到】
: I read part of it, IMHO, it's quite different from what I experience in real
: projects.

st
发帖数: 1685
7
things change too fast in the design, and those "OOP" guy jump to new tech
and rewriter everything all too often, so the stuff hardly get reused, at all.

【在 L*******r 的大作中提到】
: which book do you mean?
: Design patterns? hehe. It's a good one.
: Tell us your experience, please. :)

L*******r
发帖数: 1011
8
I used to using C++. Design pattern is useful in my commercial projects.
Then I am using Java, the patterns are still useful in my projects.
Now I am using C# and .Net, patterns help me, too.
Even MS begins to talk about patterns. There is a show in MSDN TV talking
about the importance of Patterns.
Yes. The implementation of the pattern changed. But this doesn't matter at
all.
The key is the ideas behind those patterns and how to solve the problem set in
a given context using some know solutions

【在 st 的大作中提到】
: things change too fast in the design, and those "OOP" guy jump to new tech
: and rewriter everything all too often, so the stuff hardly get reused, at all.

p***n
发帖数: 635
9
one good thing about .netis that it has already got a lot of patterns built in
and it is a rare occasion that you actually want to use a DP to architect sth.

【在 st 的大作中提到】
: things change too fast in the design, and those "OOP" guy jump to new tech
: and rewriter everything all too often, so the stuff hardly get reused, at all.

st
发帖数: 1685
10
this sounds good, recently besides the security bug, there are other reports
about one problem in a site cna bring the whole IIS down through .net. :(
waiting for .net version 3 now, it seems SP4 doesnot solve enough problem.s

【在 p***n 的大作中提到】
: one good thing about .netis that it has already got a lot of patterns built in
: and it is a rare occasion that you actually want to use a DP to architect sth.

p***n
发帖数: 635
11
security is always a hassle for M$ products, hehe

【在 st 的大作中提到】
: this sounds good, recently besides the security bug, there are other reports
: about one problem in a site cna bring the whole IIS down through .net. :(
: waiting for .net version 3 now, it seems SP4 doesnot solve enough problem.s

L*******r
发帖数: 1011
12
老实说,我很怀疑这种说法。
DP是一个思想,不是一个库。
.Net可以使用这个思想来解决问题。但是我们碰到类似问题的时候也需要应用。
简单例子,singleton, strategy, state, factory, visitor ...
几乎随便拿一个项目你都可以找到应用。

in
sth.
all.

【在 p***n 的大作中提到】
: one good thing about .netis that it has already got a lot of patterns built in
: and it is a rare occasion that you actually want to use a DP to architect sth.

d****t
发帖数: 362
13
Good! Which book are you reading?

Factory Pattern
Pattern
Pattern
Pattern

【在 p***n 的大作中提到】
: 正在看这一本讲设计模式的.
: 要是有人感兴趣的话我就花点时间BRIEF一下.
: 1 - Developing an Interactive News Site Application Using the Abstract Factory Pattern
: 2 - Developing an Online Library Application Using the Factory Method Pattern
: 3 - Developing a Sales Information System Using the Singleton Pattern
: 4 - Creating a Document Manager Application using the Adapter Pattern
: 5 - Developing a Patient Tracker System Using the Facade Pattern
: 6 - Creating a File Directory Structure Using a Composite Pattern
: 7 - Creating

p***n
发帖数: 635
14
.net instant code from skillsoft press.

【在 d****t 的大作中提到】
: Good! Which book are you reading?
:
: Factory Pattern
: Pattern
: Pattern
: Pattern

1 (共1页)
进入DotNet版参与讨论
相关主题
谁对Amazon感兴趣的,我可以内部推荐 (software developer)关于design pattern
有朋友要找C++的工作吗?请问准备面试的OO design题目要了解哪些design pattern?
Can someone help on Soap?纯ajax的app是不是比mvc的要难很多
what is best for Java Desktop GUI再来一个design的题
有谁来谈谈yukon么?准备走马观花把GoF 23个pattern过一遍了
我们公司招程序员,有感兴趣的吗?design pattern in Java那本书比较好?
好冷清啊求教:Facade Pattern vs Static Variable
How many people use design patterns when coding?最近对Mechanical Trading感兴趣,有人想一起研究么
相关话题的讨论汇总
话题: pattern话题: using话题: developing话题: factory话题: creating