1

ストリーム演算子をオーバーロードしようとしてい<<ますが、オーバーロード関数の定義にあるようなオブジェクト情報ではなく、オブジェクト アドレスを出力しているだけです。これが私のコードです。ウェブで見つけることができるすべての例を試すのにかなりの時間を費やしましたが、何も機能していません。私のストレスを少しでも和らげてください!ありがとう。

間隔.h:

#ifndef INTERVAL_H
#define INTERVAL_H
#include <string>
#include <iostream>
#include <assert.h>

using namespace std;

class Interval {
    public:
        long start;
        long end;

        // Constructor
        Interval(long, long);

        // Deconstructor
        // Virtual to make sure that it calls the correct destructor
        virtual ~Interval();

        bool operator==(const Interval &other) const;
        bool operator!=(const Interval &other) const;
        bool operator<(const Interval &other) const;
        bool operator<=(const Interval &other) const;
        bool operator>(const Interval &other) const;
        bool operator>=(const Interval &other) const;
        friend ostream& operator<<(ostream& os, const Interval &i);

};
#endif

間隔.cpp:

#include "Interval.h"
#include <iostream>
#include <string>

using namespace std;

Interval::Interval(long a, long b){
    // Assert that start is less than the end
    assert(a < b);
    start = a;
    end = b;
}

// Deconstructor
Interval::~Interval(){
}

bool Interval::operator==(const Interval &other) const{
    // Return true if both start and end are equal to other's
    if(start == other.start && end == other.end){
        return true;
    }else{
        return false;
    }
}

bool Interval::operator!=(const Interval &other) const{
    // Return true(not equal) if either the start or end are different
    if(start != other.start || end != other.end){
        return true;
    }else{
        return false;
    }
}
bool Interval::operator<=(const Interval &other) const{
    // Return true if the start is less than or equal other's start
    if(start <= other.start){
        return true;
    }
}

bool Interval::operator>(const Interval &other) const{
    // Return true if the end is greater than other's end
    if(end > other.end){
        return true;
    }
}

bool Interval::operator>=(const Interval &other) const{
    // Return true if the end is greater than or equal to other's end
    if(end >= other.end){
        return true;
    }
}


bool Interval::operator<(const Interval &other) const{
    // Return true if the start is less than other's
    if(start < other.start){
        return true;
    }
}

ostream& operator<<(ostream& os, const Interval &i){

    os << "Interval[" << i.start << ", " << i.end << "]" << endl;
    return os;
}

int main(void){
    Interval *test = new Interval(10,1000);
    cout << test << endl;
    cout << "test" << endl;
}
4

2 に答える 2

5

Interval*ポインタです。アドレスを出力しているだけです。

ポインターを逆参照してみてください。

cout << *test << endl;

またはこれを試してください:

Interval test(10, 1000);   // not a pointer.
cout << test << endl;
于 2013-02-24T22:48:44.593 に答える
1
Interval *test = new Interval(10,1000);

スタック上にオブジェクトを作成するための C++ の構文は次のとおりです。

Interval test(10,1000);

正当な理由がない限り、ポインターを使用しないでください。

于 2013-02-24T22:49:47.703 に答える