fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. // общий код
  5. template <int N, int M> struct Matrix_ {
  6. double arr[N][M];
  7. Matrix_() {
  8. arr[0][0] = 1;
  9. }
  10.  
  11. };
  12.  
  13. // Специализация
  14.  
  15. template <int N, int M> struct Matrix : public Matrix_<N, M> {};
  16.  
  17. template<>
  18. struct Matrix<4,4> : public Matrix_<4,4> {
  19. Matrix& yoba() {
  20. return (*this);
  21. }
  22. };
  23.  
  24. int main() {
  25. // your code goes here
  26. Matrix<1,2> m1;
  27. Matrix<4,4> m2;
  28. m2.yoba();
  29. return 0;
  30. }
Success #stdin #stdout 0s 3408KB
stdin
Standard input is empty
stdout
Standard output is empty