C++中一些库的使用

1. #include<limits>该文件定义了各个类型的极限值

numeric_limits<T>::max();返回的就是最大值

numeric_limits<T>::min();返回的就是最小值

(在数据结构中,图需要用到,表示无边)

2. #include <exception> 

异常类,try { ... } catch (const exception &e) { ... }

你可能感兴趣的:(C++中一些库的使用)