문제

I am confused about the difference between the branch and the predicate in a code. Can someone explain the difference with an example?

도움이 되었습니까?

해결책

A predicate returns a yes/no answer to a question - that is, a boolean conditional.

A branch is what you do depending on the answer (assuming you do different things).

So, in c type pseudo code:

if(predicate)
{
  // one branch
}
else
{
  // another branch
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 softwareengineering.stackexchange
scroll top