Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
3answers
1k 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 ...
3
votes
6answers
198 views

How can I avoid getters AND avoid hard coding the UI?

I want to print a description of a warrior to the console that will include the warrior's strength and the warrior's weapon in the form This <description> warrior uses a <weapon> For ...
3
votes
4answers
268 views

How to think “Tell, don't ask” in this simple example?

How would you adhere to the "Tell, don't ask" principle (henceforth "the principle") in the following simple scenario? In a Tetris game, I have Board, BlockGrid and Piece classes relevant to the ...
3
votes
3answers
513 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 ...
2
votes
2answers
64 views

How to unit-test in “tell, don't ask” follower classes?

I think the issue is explained best with an example. public class MyService { private OtherService theOther; public void setTheOther(OtherService srv) { theOther = srv; } public void ...
2
votes
2answers
324 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 ...
2
votes
4answers
257 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 ...
2
votes
4answers
417 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 ...
0
votes
2answers
40 views

How to test an object when I can't access state?

I have a factory class that creates an object based on a parameter it receives. The parameter is an identifier that tells it which object it should create. Its first step is to use the data access ...
0
votes
2answers
153 views

Tell don't ask and shared state between tasks

In this simple example (ofcourse my real world problem is a tad more complex, although the basics are the same), how do I enforce tell dont ask to the max? Id like to maximize tell dont ask in the ...