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.
|
- template<class T>
- struct point {
- T x;
- T y;
- };
-
- point<double> p1{1.0, 2.0};
- point<int> p2{1, 2};
|