Home Accessibility Courses Twitter The Mouth Facebook Resources Site Map About Us Contact
 
For 2023 (and 2024 ...) - we are now fully retired from IT training.
We have made many, many friends over 25 years of teaching about Python, Tcl, Perl, PHP, Lua, Java, C and C++ - and MySQL, Linux and Solaris/SunOS too. Our training notes are now very much out of date, but due to upward compatability most of our examples remain operational and even relevant ad you are welcome to make us if them "as seen" and at your own risk.

Lisa and I (Graham) now live in what was our training centre in Melksham - happy to meet with former delegates here - but do check ahead before coming round. We are far from inactive - rather, enjoying the times that we are retired but still healthy enough in mind and body to be active!

I am also active in many other area and still look after a lot of web sites - you can find an index ((here))
Comparing Objects in C++

Comparing two objects

You can run a method on an object in C++ (or in any other OO language) to find an attribute of that object - let's say how costly it is (example, how costly it is to jave your group see a film). But you can't really run a method on TWO or more objects, which is what you would need to do if you were looking for the cosylier.

Solution ... call a method on one object and pass the secondf method in as a parameter ... so the call might look like this:

Film * pry_c = Babysitting[0]->seeer(Babysitting[1]);

You'll notice that the call returns an object of the type that you're comaring and not a cost value. If you want to find the most expensive, you can always call the method that tells you the price of the returned object, but if you wrote the code the other way around you wouldn't be able to get the other details of the object (e.g. which film) from the value you got back.

Here's the code of the seeer method:

Film * Film::seeer(Film * that) {
  if (this->see() > that->see()) return this;
  return that;
  }


this is a reserved word in C++, referring to the current object. that is just my choice of name for the other object we're comparing to.

Comparing a whole array of objects

When it comes to comparing a whole lot of objects, there's a different issue - you can't define a mehod with a completely unknown number of paramaters and it would be hard to code anyway. So to find the costlIEST, you are best advised to use a static method ... so the call would look something like this:

Film * pry_c = Film::seeest(Babysitting,3);

And here's the code for that method:

Film * Film::seeest(Film ** options, int owmany) {
  Film * sofar = options[0];
  for (int i=1; i<owmany; i++) {
    sofar = sofar->seeer(options[i]);
    }
  return sofar;
  }


This starts off by taking element zero as the costliest, then compares it (or the costliest so far) to all the other films in the array .. using the "sofar" varaible to keep note of the costliest so far.

In other languages such as Perl, PHP and Python, you can dynically expand a list or array, and you have functions to tell you how long it is. That is NOT the case in C++, so the method in this example is also provided with a count to tell it how many items to check. The alternative technology here would be to have an array that's longer than you need and put a cardinal value (such as a NULL) after the ens of the data, as is done when you make char arrays into strings.

And Finally

This example is demonstrated using a base class of "Film", but in fact the full example that I wrote during the course this week uses classes of type "Cinema" and "Blockbuster" both of which are derived from "Film". This is a really excellent example of the use of inheritance and polymorphism, as there was only one set of comparators to write and I can use them to compare two cinemas, two blockbusters, or one of each.

You can see the full source code of this example here and learn about things like this on our C++ Course.
(written 2008-06-13)

 
Associated topics are indexed as below, or enter http://melksh.am/nnnn for individual articles
C235 - C and C based languages - I/O in C++
  [1478] Some new C programming examples - files, structs, unions etc - (2007-12-19)
  [3124] C++ - putting the language elements together into a program - (2011-01-08)
  [3252] C++ - unknown array size, unknown object type. Help! - (2011-04-17)
  [3390] Printing objects in C++ - (2011-08-13)
  [3807] Reading (and writing) files in C++ - (2012-07-18)
  [3810] Reading files, and using factories to create vectors of objects from the data in C++ - (2012-07-21)
  [4562] Left shift operator on an output stream object - C++ - (2015-10-30)
  [4563] Formatting and outputting your own classes in C++ - (2015-10-30)


Back to
What a lot of files! (C++ / Polymorphism demo)
Previous and next
or
Horse's mouth home
Forward to
A warm welcome for visitors from the USA
Some other Articles
PHP - Sanitised application principles for security and useability
Software - changes and delays. But courses must run on time!
CSS training - Cascading Style Sheets (UK course)
A warm welcome for visitors from the USA
Comparing Objects in C++
What a lot of files! (C++ / Polymorphism demo)
Spam Filters ... are working!
The Composting Cone Challenge
Compiling C programs with gcc - an overview
Dynamic Memory Allocation in C
4759 posts, page by page
Link to page ... 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96 at 50 posts per page


This is a page archived from The Horse's Mouth at http://www.wellho.net/horse/ - the diary and writings of Graham Ellis. Every attempt was made to provide current information at the time the page was written, but things do move forward in our business - new software releases, price changes, new techniques. Please check back via our main site for current courses, prices, versions, etc - any mention of a price in "The Horse's Mouth" cannot be taken as an offer to supply at that price.

Link to Ezine home page (for reading).
Link to Blogging home page (to add comments).

You can Add a comment or ranking to this page

© WELL HOUSE CONSULTANTS LTD., 2024: 48 Spa Road • Melksham, Wiltshire • United Kingdom • SN12 7NY
PH: 01144 1225 708225 • EMAIL: info@wellho.net • WEB: http://www.wellho.net • SKYPE: wellho

PAGE: http://www.wellho.net/mouth/1675_Com ... in-C-.html • PAGE BUILT: Sun Oct 11 16:07:41 2020 • BUILD SYSTEM: JelliaJamb