?? dummy_limits.h
字號(hào):
// A workaround for old compilers.
namespace std
{
template<class T> struct numeric_limits
{
};
template<> struct numeric_limits<int>
{
static int min() { return -0x80000000; }
static int max() { return 0x7fffffff; }
};
template<> struct numeric_limits<float>
{
static float min() { return -1e38; }
static float max() { return 1e38; }
};
template<> struct numeric_limits<double>
{
static double min() { return -1e308; }
static double max() { return 1e308; }
};
};
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -