std :: cout Anweisungen Auswertungsreihenfolge [duplizieren]
Diese Frage hat hier bereits eine Antwort:
cout << Aufrufreihenfolge der zu druckenden Funktionen? 3 AntwortenWas stimmt nicht mit der pop () - Funktion, warum funktioniert sie nicht richtig?
class stack{
int *p, *Cursor;
int size ;
public:
stack(int sz) {Cursor = p = new int[size=sz+1];} //consider the stack empty when its size is 1
~stack() {delete[] p;} //Cursor and P will be destroyed when the program finishes
void push(int x) {Cursor+=1; *Cursor=x; size++;}
int pop() {if(Cursor == p) return -1; int temp = *Cursor; Cursor--; size--; return (temp);}
bool isEmpty(){return(Cursor == p);}
bool isFull(){return(Cursor == p+size);}
};
hier ist mein Test:
stack A(3);
std::cout<<"Empty: "<<A.isEmpty()<<std::endl;
std::cout<<"Full: "<<A.isFull()<<std::endl;
A.push(10);
A.push(20);
A.push(30);
std::cout<<std::endl;
std::cout<<" 1st pop: "<<A.pop()<<std::endl<<" 2nd pop: " <<A.pop()<<std::endl<<" 3rd pop: " <<A.pop()<<std::endl<<" 4th pop: " <<A.pop()<<std::endl;
ie Ausgabe, die ich bekomme, ist:
1st pop: -1
2nd pop: 10
3rd pop: 20
4th pop: 30
in der Zwischenzeit sollte ich etw wie folgt bekommen:
1st pop: 30
2nd pop: 20
3rd pop: 10
4th pop: -1
Die Frage ist, wo bin ich falsch gelaufen?