template <auto Arg> // #1 struct AutoExample { static constexpr auto value = Arg; }; int main() { AutoExample<1> a; // #2 AutoExample<'c'> b ...
確定! 回上一頁