<ratio>
包含標準的標頭 <ratio> 定義用來儲存和管理有理數在編譯時期常數和範本。
#include <ratio>
指定新結構
template <intmax_t N, intmax_t D = 1>
struct ratio
{
static constexpr intmax_t num;
static constexpr intmax_t den;
typedef ratio<num, den> type;
};
ratio Structure 定義靜態常數 num 和 den 這類 num / den == N/D 和 num 和 den 沒有公約數。 num / den 由範本類別所表示的 value 。 因此, type 將具現化 num == N0 和 den == D0 的 ratio<N0, D0> 。
特製化
<ratio> 也定義具有下列格式 ratio 的特製化。
template <class R1, class R2> struct ratio_specialization
每個特製化採用也必須是 ratio的特製化的兩個樣板參數。 一旦關聯的邏輯作業所需 type 的值。
名稱 |
type 值 |
---|---|
ratio_add |
R1 + R2 |
ratio_divide |
R1 / R2 |
ratio_equal |
R1 == R2 |
ratio_greater |
R1 > R2 |
ratio_greater_equal |
R1 >= R2 |
ratio_less |
R1 < R2 |
ratio_less_equal |
R1 <= R2 |
ratio_multiply |
R1 * R2 |
ratio_not_equal |
!(R1 == R2) |
ratio_subtract |
R1 - R2 |
typedef
typedef ratio<1, 1000000000000000000> atto;
typedef ratio<1, 1000000000000000> femto;
typedef ratio<1, 1000000000000> pico;
typedef ratio<1, 1000000000> nano;
typedef ratio<1, 1000000> micro;
typedef ratio<1, 1000> milli;
typedef ratio<1, 100> centi;
typedef ratio<1, 10> deci;
typedef ratio< 10, 1> deca;
typedef ratio< 100, 1> hecto;
typedef ratio< 1000, 1> kilo;
typedef ratio< 1000000, 1> mega;
typedef ratio< 1000000000, 1> giga;
typedef ratio< 1000000000000, 1> tera;
typedef ratio< 1000000000000000, 1> peta;
typedef ratio< 1000000000000000000, 1> exa;