C++中怎么避免被0除,針對這個問題,這篇文章詳細介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
創(chuàng)新互聯(lián)專注于企業(yè)成都營銷網(wǎng)站建設(shè)、網(wǎng)站重做改版、錫林浩特網(wǎng)站定制設(shè)計、自適應(yīng)品牌網(wǎng)站建設(shè)、HTML5建站、商城網(wǎng)站建設(shè)、集團公司官網(wǎng)建設(shè)、成都外貿(mào)網(wǎng)站建設(shè)公司、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計等建站業(yè)務(wù),價格優(yōu)惠性價比高,為錫林浩特等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。
Reason(原因)
The result is undefined and probably a crash.
結(jié)果無定義,很可能會導(dǎo)致程序崩潰。
Note(注意)
This also applies to %.
本規(guī)則也適用于取余運算。
Example, bad(反面示例)
double divide(int a, int b)
{
// BAD, should be checked (e.g., in a precondition)
return a / b;
}
double divide(int a, int b)
{
// good, address via precondition (and replace with contracts once C++ gets them)
Expects(b != 0);
return a / b;
}
double divide(int a, int b)
{
// good, address via check
return b ? a / b : quiet_NaN();
}
Alternative: For critical applications that can afford some overhead, use a range-checked integer and/or floating-point type.
可選項:對于能夠承受一定代價的要求嚴(yán)格的應(yīng)用,可以考慮使用帶有范圍檢查的整數(shù)或者浮點數(shù)。
Enforcement(實施建議)
Flag division by an integral value that could be zero
標(biāo)記可能為零的整數(shù)除數(shù)。
關(guān)于C++中怎么避免被0除問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識。