4
votes
10answers
313 views
how do i explain that if (xyz == null) checks are not “protective”.
i have a few developers who constantly put If null checks
For example:
Run(Order order)
{
if (order == null) return;
}
in their code as they think they are protecting their class if someone …
2
votes
6answers
183 views
Binary Searching
Hi
So, I want to understand more about binary searching, cause I don't really understand. Binary search requires a precondition that an array is sorted. I got that right? It seems like a method should …
1
vote
12answers
215 views
preconditions and exceptions
Suppose you have a method with some pre and post-conditions.
Is it ok to create an exception class for each pre-condition that is not accomplished?
For example:
Not accomplishing pre1 means throwing …
0
votes
3answers
170 views
Are preconditions and postconditions needed in addition to invariants in member functions if doing design by contract?
I understand that in the DbC method, preconditions and postconditions are attached to a function.
What I'm wondering is if that applies to member functions as well.
For instance, assuming I use …
