这个警告信息是什么意思?

ej.*_*ej. 1 c++ qt

Product.cpp:34:警告:'QTextStream&endl(QTextStream&)'的地址将始终评估为'true'

Product.cpp:在成员函数'void Product :: setProductToSold()'中:

Product.cpp:45:警告:'QTextStream&endl(QTextStream&)'的地址将始终评估为'true'

#include <string>
#include <iostream>
#include <time.h>
using std::string;
using std::cout;

#include "Product.h"

Product::Product()
{
    seller = "";
    itemName = "";
    price = 0.00;
    min = 0.00;
    buyingPrice = 0.00;
    time = 0;
    description = "";
    highestBidder = "None";
    currentBid = 0.00;

    timer = new QTimer( this );
    connect( timer, SIGNAL(timeout()), this, SLOT(setProductToSold()) );
}

void Product::startTimer()
{
Line 34:    cout << " Timer Started " << endl;
    timer->start( 2000, TRUE ); // 2 seconds single-shot timer
}

void Product::setHandler(Handler *h)
{
    handler = h;
}

void Product::setProductToSold()
{
Line 45:    cout << " Item auction over" << endl;
}
Run Code Online (Sandbox Code Playgroud)

我的产品.::

#include <string>

#include <qobject.h>
#include <qtimer.h>
#include <qgl.h>

#include "HandleTCPClient.h"

class Handler;

//Define ourselves a product class
class Product : public QObject
    {

        Q_OBJECT


    public:
        Product();

        QTimer *timer;
        string seller, itemName, description, highestBidder;
        double price, min, buyingPrice, currentBid;
        int time;
        bool isSold;
        Handler *handler;

        void setHandler(Handler *h);
        void startTimer();

    public slots:
        void setProductToSold();

    };

#endif
Run Code Online (Sandbox Code Playgroud)

谢谢 :)

Mar*_*ett 7

你(或Qt)重新定义了endl吗?尝试把std :: endl