book オブジェクトのリストを引数として受け取る関数を書いています。各 book オブジェクトには、プライベート データ メンバーの価格があります。この関数は、各本の価格を比較し、価格が最も高い本を返すことを想定しています。
//Client program
#include <iostream>
#include "Book.h"
#include "textbook.h"
#include "Name.h"
#include "unsorted.h"
using namespace std;
int main()
{
book b1("The Exception to the Rulers", "Amy", "Goodman", "Hyperion", 342, "1-4013-0131", 21.95,'N'); // this is the title, authors first & last name, publisher, number of pages, isbn number, price, and code.
book b2("Who moved my cheese", "Spencer", "Johnson", "Red Tree", 95, "0-399-14446-3", 19.99, 'H');
book b3("Hellbound Hearts", "Neil", "Gaiman", "Dark Harvest", 326, "978-1-4391-4090-1", 16.00, 'F');
UnsortedType L1; // creating a list "L1" with the default vaule lengh 0
L1.InsertItem(b1); // populating the list with the first book
L1.InsertItem(b2); // populating the list with the second book
L1.InsertItem(b3); // populating the list with the third book
主に、実際のリスト「L1」またはL1の内容を価格を比較する関数に渡す方法がよくわかりません。関数 getMostExpensive を呼び出すには、次のようなことを行うため、混乱していると思います。
L1.getMostExpensive();
しかし、L1 で関数を呼び出す場合、引数を渡す必要がありますか? そうでない場合、関数 getMostExpensive() 内のプライベート データ メンバーの価格にアクセスするにはどうすればよいですか?