Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm trying to divide a number of values and was wondering what would be the best way to check if one of the values is 0 or not. Usually I use something like

var somevar = (somevalue1 != 0 || somevalue2 != 0)?somevalue1 / somevalue2:0;

I have to check a lot of values so was wondering if there is a nicer, smarter way of doing this.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
297 views
Welcome To Ask or Share your Answers For Others

1 Answer

You only need to check the denominator to prevent a divide by zero.

So

var somevar = somevalue2 != 0 ? somevalue1 / somevalue2 : 0;

is much nicer, assuming 0 is a good default.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...