Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6881045
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T05:03:28+00:00 2026-05-27T05:03:28+00:00

Although copy constructors in this regard have been discussed before, I was unable to

  • 0

Although copy constructors in this regard have been discussed before, I was unable to find an optimal solution to the following problem: How to invoke the copy constructor through the return of a class object containing arithmetic results (*,/,+) performed by member functions – as shown below?

#include <iostream>
#include "DataContainer.hh"
using namespace std;

int main() {
   DATA_TYPE numbers1[] = {1,2,3,4,5,6,7,8,9,10}; 
   DATA_TYPE numbers2[] = {10,9,8,7,6,5,4,3,2,1};
   DataContainer *dataContainer1 = new DataContainer(numbers1,10);
   DataContainer *dataContainer2 = new DataContainer(numbers2,10);
   dataContainer1->printArray();
   dataContainer2->printArray();
   cout << ">> Multiplication:" << endl;
     (*dataContainer1 * (*dataContainer2)).printArray();
   cout << ">> Addition:" << endl;
     (*dataContainer1 + (*dataContainer2)).printArray();
   cout << ">> Division:" << endl;
     (*dataContainer1 / (*dataContainer2)).printArray();

   delete dataContainer1;
   delete dataContainer2;
   return 0;
}

#ifndef DATA_CONTAINER_HH
#define DATA_CONTAINER_HH
#define DATA_TYPE float

class DataContainer {
public:
  DataContainer(void);
  DataContainer(DATA_TYPE *array, int size);
  DataContainer(const DataContainer& dataContainer);
  DataContainer operator*(DataContainer);
  DataContainer operator/(DataContainer);
  DataContainer operator+(DataContainer);
  void printArray();

private:
  DATA_TYPE *m_array;
  int m_size;
};
#endif

#include "DataContainer.hh"
#include <cmath>
#include <iostream>
#include <algorithm>
using namespace std;

DataContainer::DataContainer()
{
}
DataContainer::DataContainer(DATA_TYPE *array, int size)
{
   m_size = size;
   m_array = new DATA_TYPE[m_size];
   for(int i=0; i<m_size; i++)
      m_array[i] = array[i];
}

DataContainer::DataContainer(const DataContainer& dataContainer)
   : m_size(dataContainer.m_size), m_array(new DATA_TYPE[dataContainer.m_size])
{
   std::copy(dataContainer.m_array, dataContainer.m_array + dataContainer.m_size, m_array);
}

void DataContainer::printArray()
{
   for(int i=0; i<m_size; i++)
      cout << m_array[i] << " ";
   cout << endl;
}

DataContainer DataContainer::operator*(DataContainer container) {
   DATA_TYPE *temp;
   for (int i=0;i<m_size;i++) temp[i] = m_array[i] * container.m_array[i];
   return DataContainer(temp, m_size);
}
DataContainer DataContainer::operator/(DataContainer container) {
   DATA_TYPE *temp;
   for (int i=0;i<m_size;i++) temp[i] = m_array[i] / container.m_array[i];
   return DataContainer(temp, m_size);
}
DataContainer DataContainer::operator+(DataContainer container) {
   DATA_TYPE *temp;
   for (int i=0;i<m_size;i++) temp[i] = m_array[i] + container.m_array[i];
   return DataContainer(temp, m_size);
}

The output is as follows:

1 2 3 4 5 6 7 8 9 10 
10 9 8 7 6 5 4 3 2 1 
>> Multiplication:
Segmentation fault

It seems that the dynamic memory allocation does not work. Any help is greatly appreciated. Thanks so much.
-Manuel

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T05:03:28+00:00Added an answer on May 27, 2026 at 5:03 am

    What is wrong with this?

       DATA_TYPE *temp;
       for (int i=0;i<m_size;i++) temp[i] = m_array[i] * container.m_array[i];
       return DataContainer(temp, m_size);
    

    In your operators. Look very carefully, Hint: temp.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Although somewhat related to this question , I have what I think is a
Although I don't have an iPhone to test this out, my colleague told me
I have installed NHibernate for my ASP.NET web app although I'm getting a problem
I have been playing around with text in the canvas, and although it is
in an answer to this question I have been informed that my problems lie
Although I do understand the serious implications of playing with this function (or at
Although I played with it before, I'm finally starting to use Dvorak (Simplified) regularly.
Although ASP.NET MVC seems to have all the hype these days, WebForms are still
Although I grasp the concept of Bitwise Operators, I can't say that I have
Although using SQL FOR XML EXPLICIT is cumbersome, I find myself using it often.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.