AnaCal Posted December 8, 2011 Report Share Posted December 8, 2011 Boas, tenho o seguinte ciclo mas ele so esta a actualizar o ultimo valor do vector e não consigo compreender o errofor(int i = 0; i < vector_Clientes.size(); i++){ cout << "TEMPOS ANTERIORES " << vector_Clientes[i]->getnovotempoRecolha() << endl; vector_Clientes[i]->actualizatempoRecolha(1); } os meus metodos são void Cliente::actualizatempoRecolha(int n) { this->novotempoRecolha = gettempoRecolha() - n; } int Cliente::getnovotempoRecolha() { return this->novotempoRecolha; } Quote Link to comment Share on other sites More sharing options...
Question
AnaCal
Boas, tenho o seguinte ciclo mas ele so esta a actualizar o ultimo valor do vector e não consigo compreender o erro
os meus metodos sãoLink to comment
Share on other sites
0 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.