本篇內容介紹了“C++怎么使用有符號數進行數學運算”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
專注于為中小企業(yè)提供成都做網站、成都網站建設、成都外貿網站建設服務,電腦端+手機端+微信端的三站合一,更高效的管理,為中小企業(yè)藤縣免費做網站提供優(yōu)質的服務。我們立足成都,凝聚了一批互聯網行業(yè)人才,有力地推動了千余家企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網站建設實現規(guī)模擴充和轉變。
ES.102:使用有符號數進行數學運算
因為大部分數學運算都是有符號的。當x>y時,x-y會返回一個負數,極少情況實際需要的是按模運算。
Example(示例)
如果不是你有意為之,無符號運算可能產生意外的結果。如果混用有符號數和無符號數,問題會更明顯。
template
T subtract(T x, T2 y)
{
return x - y;
}
void test()
{
int s = 5;
unsigned int us = 5;
cout << subtract(s, 7) << '\n'; // -2
cout << subtract(us, 7u) << '\n'; // 4294967294
cout << subtract(s, 7u) << '\n'; // -2
cout << subtract(us, 7) << '\n'; // 4294967294
cout << subtract(s, us + 2) << '\n'; // -2
cout << subtract(us, s + 2) << '\n'; // 4294967294
}
代碼中我們已經很明確地知道發(fā)生了什么。但是如果你看到us - (s + 2) or s += 2; ...; us - s,你真的可以想象結果是4294967294么?
Exception(例外)
如果你真的需要按模運算-增加必要的注釋提示對溢出行為的依賴,這樣的代碼會令很多程序員疑惑。
Example(示例)
標準庫使用無符號類型作為下標。內置數組使用有符號數作為下標。這會導致代碼難于理解并不可避免地帶來錯誤。
int a[10];
for (int i = 0; i < 10; ++i) a[i] = i;
vector v(10);
// compares signed to unsigned; some compilers warn, but we should not
for (gsl::index i = 0; i < v.size(); ++i) v[i] = i;
int a2[-2]; // error: negative size
// OK, but the number of ints (4294967294) is so large that we should get an exception
vector v2(-2);
Use gsl::index for subscripts; see ES.107.
使用ES.107中介紹的gsl::index作為下標。
Enforcement(實施建議)
Flag mixed signed and unsigned arithmetic
標記有符號數和無符號數混用的數學運算。
Flag results of unsigned arithmetic assigned to or printed as signed.
標記將無符號數學運算的結果賦值給有符號數或者作為有符號數print輸出的情況。
Flag negative literals (e.g. -2) used as container subscripts.
標記使用負值作為容器下標的情況。
(To avoid noise) Do not flag on a mixed signed/unsigned comparison where one of the arguments is sizeof or a call to container .size() and the other is ptrdiff_t.
(為了避免誤判)當一個參數是sizeof或者container.size()的返回值,而另一個參數是ptrdiff_t的時候,不要標記有符號數/無符號數混合的比較操作。
“C++怎么使用有符號數進行數學運算”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關的知識可以關注創(chuàng)新互聯網站,小編將為大家輸出更多高質量的實用文章!