I have a parameter num
of int
type, where the user can give it one of two values: 0
or 1
.
I can check it using the obvious:
if (num < 0 || num > 1)
print("The parameter value is incorrect.
");
But I was wondering if there was a better (faster? less code?) to do this?
EDIT
This is some data flow code, so performance is of the essence. I am looking for a faster way to run this check.
Thanks
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…