BlinCT
BlinCT3 апреля 2017 г. 5:07

Перегрузка оператор + для класса матрицы

C++

Всем привет. Вопрос состоит в реализации перегрузки оператора. Думаю что я что то не правильно указываю так как класс шаблонный а с этим опыта не много. Ниже укажу хедер класса и реализацию, надеюсь кто то подскажет что не так у меня в коде. CustomMatrix.hpp

#pragma once

#include <QVector>


template <typename T>
friend CustomMatrix<T> &operator+(const CustomMatrix &a, const CustomMatrix &b);
template <typename T>
friend CustomMatrix &operator*(const CustomMatrix &a, const CustomMatrix &b);

template <typename T>
class CustomMatrix
{
public:
    //CustomMatrix();
    CustomMatrix<T> TopLeftCorner(int i, int j);
    CustomMatrix(const CustomMatrix &) = default;
    CustomMatrix(CustomMatrix &&) = default;

    CustomMatrix(int rowSize, int colSize);

    const T at(int x, int y) const;
    T & at(int x, int y);

    ~CustomMatrix() = default;
private:
    int m_iRowSize;
    int m_iColSize;

    QVector<T> m_arrVector;
};

#include "CustomMatrix_impl.hpp"
А тут уже реализация перегрузки: CustomMatrix_impl.hpp
template<typename T>
CustomMatrix &operator+(const CustomMatrix &a, const CustomMatrix &b)
{
    CustomMatrix c;

    if(a.m_iColSize == b.m_iColSize && a.m_iRowSize == b.m_iRowSize)
    {
        for (int i = 0; i < a.m_iRowSize; ++i)
        {
            for (int j = 0; j < a.m_iColSize; ++j)
            {
                c.at(i, j) = a.at(i, j) + b.at(i, j);
            }
        }
    }
    return c;
}

template<typename T>
CustomMatrix &operator*(const CustomMatrix &a, const CustomMatrix &b)
{
    CustomMatrix c;

    if(a.m_iColSize == b.m_iRowSize)
    {
        for (int i = 0; i < a.m_iColSize; ++i)
        {
            for (int j = 0; j < a.m_iRowSize; ++j)
            {
                T sum = 0;
                for (int k = 0; k < a.m_iColSize; ++k)
                {
                    sum = sum + a.at(i, k) * b.at(k, j);
                }
                c.at(i, j) = sum;
            }
        }
    }
    return c;
}
Рекомендуем хостинг TIMEWEB
Рекомендуем хостинг TIMEWEB
Стабильный хостинг, на котором располагается социальная сеть EVILEG. Для проектов на Django рекомендуем VDS хостинг.

Вам это нравится? Поделитесь в социальных сетях!

2
BlinCT
  • 3 апреля 2017 г. 6:29

Переделал все без шаблона хедер:

friend CustomMatrix &operator+(const CustomMatrix &a, const CustomMatrix &b);
friend CustomMatrix &operator*(const CustomMatrix &a, const CustomMatrix &b);

class CustomMatrix
{
public:
    //CustomMatrix();
    CustomMatrix<T> TopLeftCorner(int i, int j);
    CustomMatrix(const CustomMatrix &) = default;
    CustomMatrix(CustomMatrix &&) = default;

    CustomMatrix(int rowSize, int colSize);

    const double at(int x, int y) const;
    double & at(int x, int y);

    ~CustomMatrix() = default;
private:
    int m_iRowSize;
    int m_iColSize;

    QVector<double> m_arrVector;
};
И сама реализация:
CustomMatrix &operator+(const CustomMatrix &a, const CustomMatrix &b)
{
    CustomMatrix c(m_iRowSize, m_iColSize);

    if(a.m_iColSize == b.m_iColSize && a.m_iRowSize == b.m_iRowSize)
    {
        for (int i = 0; i < a.m_iRowSize; ++i)
        {
            for (int j = 0; j < a.m_iColSize; ++j)
            {
                c.at(i, j) = a.at(i, j) + b.at(i, j);
            }
        }
    }
    return c;
}

CustomMatrix &operator*(const CustomMatrix &a, const CustomMatrix &b)
{
    CustomMatrix c;

    if(a.m_iColSize == b.m_iRowSize)
    {
        for (int i = 0; i < a.m_iColSize; ++i)
        {
            for (int j = 0; j < a.m_iRowSize; ++j)
            {
                T sum = 0;
                for (int k = 0; k < a.m_iColSize; ++k)
                {
                    sum = sum + a.at(i, k) * b.at(k, j);
                }
                c.at(i, j) = sum;
            }
        }
    }
    return c;
}
    Evgenii Legotckoi
    • 3 апреля 2017 г. 6:35
    • Ответ был помечен как решение.

    День добрый.
    Думаю, что объявление friend стоит поместить внутрь класса.

    class CustomMatrix
    {
    public:
        //CustomMatrix();
        CustomMatrix<T> TopLeftCorner(int i, int j);
        CustomMatrix(const CustomMatrix &) = default;
        CustomMatrix(CustomMatrix &&) = default;
    
        CustomMatrix(int rowSize, int colSize);
    
        friend CustomMatrix &operator+(const CustomMatrix &a, const CustomMatrix &b)
        {
            CustomMatrix c(m_iRowSize, m_iColSize);
    
            if(a.m_iColSize == b.m_iColSize && a.m_iRowSize == b.m_iRowSize)
            {
                for (int i = 0; i < a.m_iRowSize; ++i)
                {
                    for (int j = 0; j < a.m_iColSize; ++j)
                    {
                        c.at(i, j) = a.at(i, j) + b.at(i, j);
                    }
                }
            }
            return c;
        }
    
        friend CustomMatrix &operator*(const CustomMatrix &a, const CustomMatrix &b)
        {
            CustomMatrix c;
    
            if(a.m_iColSize == b.m_iRowSize)
            {
                for (int i = 0; i < a.m_iColSize; ++i)
                {
                    for (int j = 0; j < a.m_iRowSize; ++j)
                    {
                        T sum = 0;
                        for (int k = 0; k < a.m_iColSize; ++k)
                        {
                            sum = sum + a.at(i, k) * b.at(k, j);
                        }
                        c.at(i, j) = sum;
                    }
                }
            }
            return c;
        }
    
        const double at(int x, int y) const;
        double & at(int x, int y);
    
        ~CustomMatrix() = default;
    private:
        int m_iRowSize;
        int m_iColSize;
    
        QVector<double> m_arrVector;
    };

      Комментарии

      Только авторизованные пользователи могут публиковать комментарии.
      Пожалуйста, авторизуйтесь или зарегистрируйтесь
      AD

      C++ - Тест 004. Указатели, Массивы и Циклы

      • Результат:50баллов,
      • Очки рейтинга-4
      m
      • molni99
      • 26 октября 2024 г. 8:37

      C++ - Тест 004. Указатели, Массивы и Циклы

      • Результат:80баллов,
      • Очки рейтинга4
      m
      • molni99
      • 26 октября 2024 г. 8:29

      C++ - Тест 004. Указатели, Массивы и Циклы

      • Результат:20баллов,
      • Очки рейтинга-10
      Последние комментарии
      i
      innorwall14 ноября 2024 г. 19:42
      Как Копировать Файлы в Linux If only females relatives with DZ offspring were considered these percentages were 23 order priligy online uk
      i
      innorwall14 ноября 2024 г. 17:09
      Qt/C++ - Урок 068. Hello World с использованием системы сборки CMAKE в CLion ditropan pristiq dosing With the Yankees leading, 4 3, Rivera jogged in from the bullpen to a standing ovation as he prepared for his final appearance in Chicago buy priligy pakistan
      i
      innorwall14 ноября 2024 г. 12:05
      EVILEG-CORE. Использование Google reCAPTCHA 2001; 98 29 34 priligy buy
      i
      innorwall14 ноября 2024 г. 12:00
      PyQt5 - Урок 007. Работаем с QML QtQuick (Сигналы и слоты) priligy 30mg Am J Obstet Gynecol 171 1488 505
      Сейчас обсуждают на форуме
      i
      innorwall14 ноября 2024 г. 11:39
      добавить qlineseries в функции priligy amazon canada 93 GREB1 protein GREB1 AB011147 6
      i
      innorwall11 ноября 2024 г. 18:55
      Всё ещё разбираюсь с кешем. priligy walgreens levitra dulcolax carbs The third ring was found to be made up of ultra relativistic electrons, which are also present in both the outer and inner rings
      9
      9Anonim25 октября 2024 г. 16:10
      Машина тьюринга // Начальное состояние 0 0, ,<,1 // Переход в состояние 1 при пустом символе 0,0,>,0 // Остаемся в состоянии 0, двигаясь вправо при встрече 0 0,1,>…
      ИМ
      Игорь Максимов3 октября 2024 г. 11:05
      Реализация навигации по разделам Спасибо Евгений!

      Следите за нами в социальных сетях