由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - OOD中Send request和Respond_request用什么Pattern?
相关主题
推荐两本OOD和Design Pattern的入门电子书再问Amazon的card设计
关于design pattern怎么设计一组电梯?
design类咋准备?Amazon onsite 的OOD看什么材料比较好
Amazon OO Design 经典题的思考GoF看完了以后感觉面试中OO设计就是扯淡
今天A的电面,分享兼请教。关于OOD资料
请问OOD的问题应该如何回答 有哪些资料可以参考面试中会遇到的系统设计题 是指 OO design 吗?
今天onsite估计挂了转行码农,需要学通OO D和Design Pattern吗?
design题需要把head first design pattern那本书看完么?OO Design 到底是指什么呀?
相关话题的讨论汇总
话题: request话题: respond话题: send话题: pattern话题: ood
进入JobHunting版参与讨论
1 (共1页)
n*****h
发帖数: 549
1
比如car rental system,
class customer里面应该有
send_rental_request()
相应的,
carRentalSystem里面应该有,
respond_request()
这两个function之间应该怎么联系起来?
q****x
发帖数: 7404
2
system provides a public method for users to call. why need 2?

【在 n*****h 的大作中提到】
: 比如car rental system,
: class customer里面应该有
: send_rental_request()
: 相应的,
: carRentalSystem里面应该有,
: respond_request()
: 这两个function之间应该怎么联系起来?

n*****h
发帖数: 549
3
So you are saying in each customer object it calls the CarRentalSystem? (
Most probably by newing it?)

【在 q****x 的大作中提到】
: system provides a public method for users to call. why need 2?
q****x
发帖数: 7404
4
class CarRental {
public:
bool getNewCar();
};
it's still CarRental's job to allocate resource.

【在 n*****h 的大作中提到】
: So you are saying in each customer object it calls the CarRentalSystem? (
: Most probably by newing it?)

n*****h
发帖数: 549
5
I see the point now.

【在 q****x 的大作中提到】
: class CarRental {
: public:
: bool getNewCar();
: };
: it's still CarRental's job to allocate resource.

1 (共1页)
进入JobHunting版参与讨论
相关主题
OO Design 到底是指什么呀?今天A的电面,分享兼请教。
c++!请问OOD的问题应该如何回答 有哪些资料可以参考
design pattern大家怎么准备?今天onsite估计挂了
关于 C++ design pattern 的资料design题需要把head first design pattern那本书看完么?
推荐两本OOD和Design Pattern的入门电子书再问Amazon的card设计
关于design pattern怎么设计一组电梯?
design类咋准备?Amazon onsite 的OOD看什么材料比较好
Amazon OO Design 经典题的思考GoF看完了以后感觉面试中OO设计就是扯淡
相关话题的讨论汇总
话题: request话题: respond话题: send话题: pattern话题: ood