王鹿其 发表于 2023-12-26 11:14:41

c++

下列代码打头文件均已经写好,但是依旧有错误        :没有与这些操作数匹配的 "<<" 运算符        车票管理系统       

#include<iostream>
#include<ctime>
#include"TrainManager.h"
using namespace std;

TrainManager::TrainManager() {

        this->m_num = this->m_tArray->index;//总班次
}

void TrainManager::showTrains() {
                for (int i = 0; i < m_num; i++) {
                        cout << ":" <<
                                m_tArray->m_index << endl;
                        cout << "起点站:" <<
                                m_tArray->m_depPlace << endl;
                        cout << "终点站" <<
                                m_tArray->m_endPlace << endl;
                        cout << "发车时间:" <<
                                m_tArray->m_depTime<<endl;
                        cout << "额定载量:" <<
                                m_tArray->m_loadCap << endl;
                                cout << "已定票人数:" <<
                                        m_tArray->m_orderNum << endl;
                }

}

FishC 发表于 2023-12-26 11:14:47

问题的描述不够清晰,无法准确判断错误的原因。请提供更多的代码以及错误的具体信息,这样才能帮你找到解决方案。

以上回复来自 FishC AI 小助理,如未能正确解答您的问题,请继续追问。
页: [1]
查看完整版本: c++