Tagged Questions

3
votes
2answers
477 views

Aren’t Information Expert / Tell Don’t Ask at odds with Single Responsibility Principle?

It is probably just me, which is why I'm asking the question. Information Expert, Tell Don't Ask, and SRP are often mentioned together as best practices. But I think they are at odds. Here is what I'm …
1
vote
2answers
115 views

Can I use mvc without getters and setters?

If I don't want to expose the state of my object, but I still need to display it (in HTML, XML or JSON let's say), how would I go about doing that in an MVC environment. Does it make sense to have an …
1
vote
4answers
149 views

Good case for Tell, Don’t Ask

Say I have two objects: Map Table At the moment I have something like this: Map.MapTable(Table tab); <- Static MapTable method. which checks if the table is mappable and then maps it but also …
1
vote
3answers
219 views

Does “tell, don’t ask” apply to user input validation?

I somehow must have overlooked the "tell, don't ask" OOP principle all these years because I just learned about it a couple days ago for the first time. But the context was a discussion about …
1
vote
4answers
230 views

Simple Scenario, How to Incorporate Tell Don’t Ask?

I'm trying to model a basic scenario involving a Person and a Seat. A Person has a Status property: Sitting or Standing. A seat has a Seated property that specifies the Person that is currently …