Skip to content

Commit 3bc2c04

Browse files
committed
Add note about underflow
Closes #47
1 parent 75e12df commit 3bc2c04

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

03-Style.md

+10
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,16 @@ In general, using `auto` will avoid most of these issues, but not all.
296296
297297
Make sure you stick with the correct integer types and remain consistent with the C++ standard library. It might not warn on the platform you are currently using, but it probably will when you change platforms.
298298
299+
*Note that you can cause integer underflow when peforming some operations on unsigned values. For example:*
300+
301+
```cpp
302+
std::vector<int> v1{2,3,4,5,6,7,8,9};
303+
std::vector<int> v2{9,8,7,6,5,4,3,2,1};
304+
const auto s1 = v1.size();
305+
const auto s2 = v2.size();
306+
const auto diff = s1 - s2; // diff underflows to a very large number
307+
```
308+
299309
## Use .hpp and .cpp for Your File Extensions
300310

301311
Ultimately this is a matter of preference, but .hpp and .cpp are widely recognized by various editors and tools. So the choice is pragmatic. Specifically, Visual Studio only automatically recognizes .cpp and .cxx for C++ files, and Vim doesn't necessarily recognize .cc as a C++ file.

0 commit comments

Comments
 (0)