Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
11answers
439 views

How do you get people to value abstraction and flexibility over “just getting it done”?

I sometimes have difficulties with other people who wish to solve a problem when they wish to skip the official interfaces and access underlying implementation details directly. They argue that doing ...
2
votes
3answers
267 views

What's the cleanest way to defeat C++ access qualification?

I decided to work around a bug in GNU libstdc++ by accessing an internal variable. Recalling that Johannes solved the problem on his blog, I checked that out… but couldn't comprehend the code, aside ...
0
votes
4answers
239 views

Is this a leaky abstraction?

Is specifying a field name on middle-tier a leaky abstraction? I feel it is too cumbersome to create a separate function just for each field, even if it is code-generated. public bool ...