You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #include <iostream>
-
- template<typename... Ts>
- void magic(Ts... args) {
- std::cout << sizeof...(args) << std::endl;
- }
-
- int main() {
- magic();
- magic(1);
- magic(1, 2);
- magic(1, "hello", "world");
- return 0;
- }
|