473,394 Members | 1,701 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

I need some help...

Can someone offer some insight to help correct this piece of code?

Expand|Select|Wrap|Line Numbers
  1. TwoDShape *shapes[5];
  2.  
  3.     shapes[0] = &Triangle("right", 8.0, 12.0);
  4.     shapes[1] = &Rectangle(10);
  5.     shapes[2] = &Rectangle(10, 4);
  6.     shapes[3] = &Triangle(7.0);
  7.     shapes[4] = &TwoDShape(10, 20, "generic");
The compiler says "[Warning] taking address of temporary" for each of the shapes assignments. I think I can see the problem, I'm just a newbie (this is a code snippet from a c++ intro book), and I don't know to fix it.

Thanks.
Mar 15 '07 #1
5 1432
Ganon11
3,652 Expert 2GB
Maybe you should split each line like:

Expand|Select|Wrap|Line Numbers
  1. shapes[0] = &Triangle(whatev);
to

Expand|Select|Wrap|Line Numbers
  1. Triangle *temp = new Triangle(whatev);
  2. shapes[0] = temp;
I think your code is creating the object, getting its address, and then setting that address to the array - but when the function exits, the temporary object that was created is deleted. You need to create the object using new so that it won't be deleted when the function exits.

You may also be able to write

Expand|Select|Wrap|Line Numbers
  1. shapes[0] = new Triangle(whatev);
but without testing, I couldn't be sure.
Mar 15 '07 #2
This solution worked:

Expand|Select|Wrap|Line Numbers
  1. shapes[0] = new Triangle(whatev);
The book I'm using doesn't even cover the new operator until the last chapter (I checked the index), so I never would have guessed to use it.

Thank you. :)
Mar 15 '07 #3
Ganon11
3,652 Expert 2GB
Odd that your book would include this code, but not realize the error being generated. Perhaps this is included in main() and not a function, in which case the warning never causes a problem? In any case, it's good that you figured it out.
Mar 15 '07 #4
lqdeffx
39
Do not forget, if you are going to use the "new" operator, it must be accompanied with the "delete" operator as well. Otherwise, memory leaks can occur.
Mar 15 '07 #5
This code was in main(), and the program compiled, but the output was totally screwy. It was supposed to output this:
Expand|Select|Wrap|Line Numbers
  1. Object is triangle
  2. Area is 48
  3.  
  4. Object is rectangle
  5. Area is 100
  6.  
  7. Object is rectangle
  8. Area is 40
  9.  
  10. Object is triangle
  11. Area is 24.5
  12.  
  13. Object is generic
  14. Error: area() must be overridden.
  15. Area is 0
Using this loop (where area() is a virtual function from the base class that should be overridden by triangle or rectangle's area()):
Expand|Select|Wrap|Line Numbers
  1. for(int i=0; i < 5; i++) {
  2.             cout << "Object is " <<
  3.                  shapes[i]->getName() << "\n";
  4.  
  5.             cout << "Area is " << 
  6.                  shapes[i]->area() << "\n";
  7.  
  8.             cout << "\n";
  9.             }
But before I added the new operator, the output was this:
Expand|Select|Wrap|Line Numbers
  1. Object is generic
  2. Error: area() must be overridden.
  3. Area is 0
  4.  
  5. Object is generic
  6. Error: area() must be overridden.
  7. Area is 0
  8.  
  9. Object is generic
  10. Error: area() must be overridden.
  11. Area is 0
  12.  
  13. Object is generic
  14. Error: area() must be overridden.
  15. Area is 0
  16.  
  17. Object is generic
  18. Error: area() must be overridden.
  19. Area is 0
  20.  
  21.  
Mar 15 '07 #6

Sign in to post your reply or Sign up for a free account.

Similar topics

6
by: mike | last post by:
Hello, After trying to validate this page for a couple of days now I was wondering if someone might be able to help me out. Below is a list of snippets where I am having the errors. 1. Line 334,...
5
by: John Flynn | last post by:
hi all i'm going to be quick i have an assignment due which i have no idea how to do. i work full time so i dont have the time to learn it and its due date has crept up on me .. As follows:...
0
by: xunling | last post by:
i have a question about answering ..... this topic is "need help" what do i have to write at te topic line, !after i have klicked the "answer message" button ive tried many possibilities,...
9
by: sk | last post by:
I have an applicaton in which I collect data for different parameters for a set of devices. The data are entered into a single table, each set of name, value pairs time-stamped and associated with...
7
by: Timothy Shih | last post by:
Hi, I am trying to figure out how to use unmanaged code using P/Invoke. I wrote a simple function which takes in 2 buffers (one a byte buffer, one a char buffer) and copies the contents of the byte...
15
by: Cheryl Langdon | last post by:
Hello everyone, This is my first attempt at getting help in this manner. Please forgive me if this is an inappropriate request. I suddenly find myself in urgent need of instruction on how to...
16
by: pamelafluente | last post by:
I am still working with no success on that client/server problem. I need your help. I will submit simplified versions of my problem so we can see clearly what is going on. My model: A client...
8
by: skumar434 | last post by:
i need to store the data from a data base in to structure .............the problem is like this ....suppose there is a data base which stores the sequence no and item type etc ...but i need only...
0
by: U S Contractors Offering Service A Non-profit | last post by:
Brilliant technology helping those most in need Inbox Reply U S Contractors Offering Service A Non-profit show details 10:37 pm (1 hour ago) Brilliant technology helping those most in need ...
20
by: mike | last post by:
I help manage a large web site, one that has over 600 html pages... It's a reference site for ham radio folks and as an example, one page indexes over 1.8 gb of on-line PDF documents. The site...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.