開發平台(Platform): (Ex: Win10, Linux, ...)
All
編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出)
All
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
libstdc++
問題(Question):
總問題:請問最後三行的動作做了什麼事?
小問題:
請解說一下 type 變成代表什麼了,又
最後一行兩個()()是如何解釋?
這種問題以後如何尋找谷歌關鍵字?或者哪裡有討論群?
謝謝板上各位大大
程式碼(Code):(請善用置底文網頁, 記得排版,禁止使用圖檔)
出處 http://en.cppreference.com/w/cpp/header/type_traits
namespace std {
template <class T, T v>
struct integral_constant {
static constexpr T value = v;
using value_type = T;
using type = integral_constant<T, v>;
constexpr operator value_type() const noexcept { return value; }
constexpr value_type operator()() const noexcept { return value; }
};
}